I have imported a data set from excel and I want to calculate the difference between two columns, StdTime and FinTime. The format in SAS data set looks like this:
StdTime FinTime
5:30.45 5:33.02
4:20.10 4:15.14
6:03.55 6:05.21
where the text above read as m:ss.millisec and the time should be less tha 10mins.
I want to add a column to my existing data set for the time difference between these two columns for each row but it seems the time format is not readable by SAS. Please kindly help and thank you for your attention.
You can read them this way:
data test;
input (t1 t2) ($);
StdTime = input(cats("0:",t1),anydttme11.);
FinTime = input(cats("0:",t2),anydttme11.);
difTime = FinTime - StdTime;
format StdTime FinTime difTime time12.2;
drop t1 t2;
datalines;
5:30.45 5:33.02
4:20.10 4:15.14
6:03.55 6:05.21
;
proc print; run;
You can read them this way:
data test;
input (t1 t2) ($);
StdTime = input(cats("0:",t1),anydttme11.);
FinTime = input(cats("0:",t2),anydttme11.);
difTime = FinTime - StdTime;
format StdTime FinTime difTime time12.2;
drop t1 t2;
datalines;
5:30.45 5:33.02
4:20.10 4:15.14
6:03.55 6:05.21
;
proc print; run;
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 lock in 2025 pricing—just $495!
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.