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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 678 views
  • 0 likes
  • 3 in conversation