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

;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 1324 views
  • 3 likes
  • 3 in conversation