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

 

Hi,

 

I have a variable 'date' which stores dates as numbers, eg: 2140314 .

 

For example, the following shows what my data looks like:

2140205

2140328

2140314

 

All of the data is shown as the number format. I want to convert them into date format.  For example, I want to change 2140314  into 03/14/2014.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User
data have;
input date;
cards;
2140314
;
run;

data want (drop=olddate helpstring);
set have (rename=(date=olddate));
length helpstring $8;
helpstring = put(olddate,7.);
helpstring = substr(helpstring,1,1) !! '0' !! substr(helpstring,2);
format date mmddyy10.;
date = input(helpstring,yymmdd8.);
run;

View solution in original post

4 REPLIES 4
Kurt_Bremser
Super User
data have;
input date;
cards;
2140314
;
run;

data want (drop=olddate helpstring);
set have (rename=(date=olddate));
length helpstring $8;
helpstring = put(olddate,7.);
helpstring = substr(helpstring,1,1) !! '0' !! substr(helpstring,2);
format date mmddyy10.;
date = input(helpstring,yymmdd8.);
run;

cho16
Obsidian | Level 7

Thank you ! It solves my problem

data_null__
Jade | Level 19

This uses the CATS function to silently convert numeric to character.

 

33         data _null_;
34            input number;
35            date = input(substrn(cats(number),2),yymmdd6.);
36            format date yymmddd10.;
37            put (_all_)(=);
38            cards;

number=2140205 date=2014-02-05
number=2140328 date=2014-03-28
number=2140314 date=2014-03-14

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