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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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