BookmarkSubscribeRSS Feed
toesockshoe
Calcite | Level 5

Not sure if this is the correct sub forum? Hopefully someone can redirect me if I'm on the wrong one.

 

 

Bascially I want to know how to subset a dataset to only the records dates before 07May2017 (in that exact format). How do I do this? Is there some website where I can find documentation on this? The data type of the field is date. thanks in advance!

2 REPLIES 2
novinosrin
Tourmaline | Level 20

data want;

set have;

where date<'07May2017'd;

run;

 

assumption: your dates are sas date numeric variable

Kurt_Bremser
Super User

I recommend reading this paper: https://support.sas.com/resources/papers/proceedings15/1334-2015.pdf. It has everything a beginner needs to know about SAS dates, and then some.

PS it is the second result of a google search for "sas 9.4 date and time values". See Maxim 6.

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
  • 1007 views
  • 0 likes
  • 3 in conversation