BookmarkSubscribeRSS Feed
lerdem
Quartz | Level 8

I need to compare 2 date :

One of them is in character value 20$ and looks "2016-04-01 14:30:29"

Other one is numeric datettime20. and looks "05AUG2002:09:15:55"

 

i will compare them, how can i convert it?

 

1 REPLY 1
ballardw
Super User

See if this approach works for you:

data junk;
   x="2016-04-01 14:30:29";
   y= dhms(input(scan(x,1,' '),yymmdd10.), 0,0,input(scan(x,2,' '),time.));
   format y datetime20.;
run;

Compare a variable make like Y to your other value.

 

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

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1277 views
  • 0 likes
  • 2 in conversation