I'm attempting to create a data subset containing records where the yearmth date variable is < 201809.
The yearmth date variable is in yymmn6. format (e.g., "202006").
The following code doesn't work - I always forget how to do date comparisons in SAS.
data data2;
set data1;
where yearmth < '201908';
run;Thanks!
If you date variable is in a SAS date format, you could use a SAS date constant notation:
yearmth < '01Aug2019'd
Be aware of that you need to specify the specific date.
If you date variable is in a SAS date format, you could use a SAS date constant notation:
yearmth < '01Aug2019'd
Be aware of that you need to specify the specific date.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.