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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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