BookmarkSubscribeRSS Feed
bluegin
Calcite | Level 5

Hi,

I would like to use SAS to calculate the time elapsed in minutes between two time series, start_time and end_time and store it in a third column, time_elapsed. The data looks as such and is stored in an excel spreadsheet in the following hour-minute format:

start_time     end_time

02:20             02:45

03:00             03:45

04:02             04:17

...                    ...

Is there anyone with an idea as to how to proceed?

Thank you

2 REPLIES 2
ballardw
Super User

If you read it into SAS correctly you will get time values.

The SAS function INTCK can calculate many different intervals between times, dates or datetimes.

Also in SAS

End_time - Start_time would equal the number of seconds. So ElapsedMinutes = (end_time - start_time)/60;

Orsini
Fluorite | Level 6

Something like this... 

data gotcha;                                    

   format start_time end_time time_elapsed time5.;

   infile datalines4;                            

   input @1 start_time time5. @7 end_time time5.;

   time_elapsed = end_time - start_time;         

   datalines4;                                   

02:20 02:45                                      

03:00 03:45                                      

04:02 04:17                                      

;;;;                                             

run;                                           

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 2 replies
  • 1780 views
  • 1 like
  • 3 in conversation