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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2147 views
  • 1 like
  • 2 in conversation