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


I have a numeric date variable with the format 11. in the dataset 20010813

How can I convert it to 13AUG2001?

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

data have;

input current_date;

cards;

20010813

;

data want;

set have;

current_date=input(put(current_date, 8.), yymmdd8.);

format current_date date9.;

run;

This will display the date in a date9. format, but it still stored as a number underneath.

View solution in original post

2 REPLIES 2
Reeza
Super User

data have;

input current_date;

cards;

20010813

;

data want;

set have;

current_date=input(put(current_date, 8.), yymmdd8.);

format current_date date9.;

run;

This will display the date in a date9. format, but it still stored as a number underneath.

DBailey
Lapis Lazuli | Level 10

If you have clean data (and most of us don't)...then you can use an input format to tell sas that you are reading in what you want to be considered a date variable.

data have;

informat current_date yymmdd8.;

format current_date date9.;

input current_date;

cards;

20010813

;

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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