BookmarkSubscribeRSS Feed
Jesusismygrace
Obsidian | Level 7

Hi,

I would like to bring back records where the Day_28 variable is between 1 and 28. I can't get this statement to work where Day_28= >1 and <=28;

 

** Limit the Days *;
Data output.ImagingStudy1;
Set output.ImagingStudy;
where Day_28= >1 and <=28;
run;

4 REPLIES 4
Kurt_Bremser
Super User

You can do a "compound comparison" like this:

where 1 le Day_28 le 28;

The mnemonic LE is for "less or equal".

Or you do

where day_28 between 1 and 28;

which is valid in SQL.

Jesusismygrace
Obsidian | Level 7
Thank you!
mkeintz
PROC Star
If it's the solution to your request, mark it as a solution for other community users to recognize.
--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------
mkeintz
PROC Star
If it's the solution to your request, mark it as a solution for other community users to recognize.
--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 618 views
  • 1 like
  • 3 in conversation