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

Good Afternoon,

I am querying a dataset where the date field is stored as a number format, however, the number is dmmyyy, so for example, 1st Apr 2013 shows as as 10413, 31st Dec 2013 shows as 31122013.

Is there any code that would convert this to a recognisable date format so SAS would recognise it was a date and if date9. format was applied would show 01APR2013 and 31DEC2013?

Kind Regards,

cxkev

1 ACCEPTED SOLUTION

Accepted Solutions
BrunoMueller
SAS Super FREQ

Have a look at the code below, you need to first convert from numeric to char and then use appropriate informat to make a SAS date from the char variable

data want;
  infile cards dlm=",";
 
input
    @
1 date_n  8.
  ;
  * convert numeric to char left aligned ;
  date_c = put(date_n,
8. -L);
  * convert from char to SAS date ;
  date_s = input( date_c,
ddmmyy8.);
  format date_s date9.;
cards;
10413
31122013
;

View solution in original post

2 REPLIES 2
BrunoMueller
SAS Super FREQ

Have a look at the code below, you need to first convert from numeric to char and then use appropriate informat to make a SAS date from the char variable

data want;
  infile cards dlm=",";
 
input
    @
1 date_n  8.
  ;
  * convert numeric to char left aligned ;
  date_c = put(date_n,
8. -L);
  * convert from char to SAS date ;
  date_s = input( date_c,
ddmmyy8.);
  format date_s date9.;
cards;
10413
31122013
;
cxkev
Fluorite | Level 6

Excellent. Thank you Bruno.

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
  • 1812 views
  • 1 like
  • 2 in conversation