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-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

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
  • 847 views
  • 1 like
  • 3 in conversation