Hi,
I have a time variable that contains character values like this:
11:50 AM
02:35 PM
11:20 AM
I'd like to convert it to numeric so I can subtract and determine difference in time.
Any suggestions would be greatly appreciated.
Thanks!
data have;
input char_time $10.;
cards;
11:50 AM
02:35 PM
11:20 AM
;
data want;
set have;
num_time=input(char_time,time10.);
format num_time time5.;
run;
data have;
input char_time $10.;
cards;
11:50 AM
02:35 PM
11:20 AM
;
data want;
set have;
num_time=input(char_time,time10.);
format num_time time5.;
run;
Awesome thank you so much!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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 save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.