BookmarkSubscribeRSS Feed
JIM1949
Calcite | Level 5

How would one convert a date input from a data set  in a character format like "02/01/2013" or perhaps "20130509"  to a SAS date ?

2 REPLIES 2
Daisy
Calcite | Level 5

For character format like "02/01/2013", try ...

    new_date = input(character_date, ??MMDDYY10.) ;

For charachter format like "20130506", try...

    new_date = input(character_date, ??YYMMDD10.) ;

JIM1949
Calcite | Level 5

Worked great !  So simple ... I feel real dumb.  Thanx !!!

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
  • 1054 views
  • 1 like
  • 2 in conversation