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;
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.
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!
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.