BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
danwarags
Obsidian | Level 7

Hello Everyone,

 

I have a dataset with datevalues as shown below. I am trying to filter the dates which fall in certain range. How should I code this. For example, for the below dataset I need the date values in between 2001-01-01 and 2004-12-31. 

 

DateID
2000-12-28 1
2001-05-26
2002-06-12
1999-05-25 
2001-01-05 
2002-01-20 8
1998-05-17 
2007-06-20 
2008-04-26 10 
1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

If your dates are SAS dates (numeric with a date format) then filtering based on year should be fine.

 

where year(date) between 2000 and 2004;

Or

 

if 2000 <= year(date) <= 2004;

View solution in original post

1 REPLY 1
Reeza
Super User

If your dates are SAS dates (numeric with a date format) then filtering based on year should be fine.

 

where year(date) between 2000 and 2004;

Or

 

if 2000 <= year(date) <= 2004;

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
  • 1 reply
  • 1194 views
  • 2 likes
  • 2 in conversation