BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
RobertWF51
Calcite | Level 5

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!

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20

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.

Data never sleeps

View solution in original post

2 REPLIES 2
LinusH
Tourmaline | Level 20

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.

Data never sleeps
RobertWF51
Calcite | Level 5
Perfect - thank you!

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 458 views
  • 1 like
  • 2 in conversation