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.
Nearly 200 sessions are now available on demand in the Innovate Hub.
Watch 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.