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!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 773 views
  • 1 like
  • 2 in conversation