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

How do I convert a DATETIME22.3 value into a SAS date value (number of days since January 1 1960)?  I am running PC SAS 9.3.

1 ACCEPTED SOLUTION
3 REPLIES 3
Kurt_Bremser
Super User

The function to extract a date from a datetime is datepart().

So you either do (in a data step)

date_new = datepart(datetimeval);
format date_new yymmdd10.;

or (to replace the original variable)

dateval = datepart(dateval);
format dateval yymmdd10.;

Although I prefer version 1, as it also allows you to set a length for the new variable (date values can be stored in 4 bytes, datetime need all 8).

rfortin
Calcite | Level 5
Thanks for your help. I have copied the code that worked below. rfortin



format newdatadate mmddyy6.; newdatadate = datepart(datadate); d = day(newdatadate); m = month(newdatadate); y = year(newdatadate); sasdate = mdy(m,d,y);

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
  • 3 replies
  • 25419 views
  • 3 likes
  • 2 in conversation