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;                                           

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

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
  • 1915 views
  • 1 like
  • 3 in conversation