BookmarkSubscribeRSS Feed
arpitagarwal512
Calcite | Level 5

Hi Team,

 

i am unable to convert below date format:

 

"02/05/1992" to "1992-05-05 : 00:00:00"

 

source is in string format and output should be in numeric format.

 

 

1 REPLY 1
jklaverstijn
Rhodochrosite | Level 12

You're looking at a simnple two-step process:

 

1) Convert the string to a date

2) Convert the date to a datetime

 

This can be done in a single line of code:

new_dt = dhms(input(date_str, ddmmyy10.), 0,0,0);

Now you have a datetime. But I do not know a predefined format for that so you may have to roll your own. Have a look at this how to do that.

 

EDIT: This would be how to do the custom format:

 

proc format;
  picture mydt other='%0Y-%0m-%0d : %0H:%0M:%0S' (datatype=datetime);
run;

 

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1 reply
  • 5591 views
  • 2 likes
  • 2 in conversation