Hello,
I'm trying to calculate the number of hours between two time variables in Proc SQL. That calculation is easy enough, but the obstacle I'm facing is the span between days. For instance, if an event happened on the 8th at 11:00pm and ended on the 9th at 4:00am, I want it to give me 5 hours. I have a beginning date (date9.) variable, an ending date (date9.) variable and the two (time10.) time variables (beginning/ending).
Would I need to aggregate these to create datetime variables and then proceed to do the intck calculation from there?
Any help is appreciated! Thanks!
I would create a datetime variable using DHMS using your two variables and then subtract the two which would give me the difference in seconds.
Assuming SAS dates and time values:
dhms(date1, 0, 0, time1) - dhms(date2, 0, 0, time2) as duration_seconds
Look at the 6th example here:
I would create a datetime variable using DHMS using your two variables and then subtract the two which would give me the difference in seconds.
Assuming SAS dates and time values:
dhms(date1, 0, 0, time1) - dhms(date2, 0, 0, time2) as duration_seconds
Thanks Reeza. This got me what I wanted.
dhms(event_end_date,0,0,(input(event_end_time, time.))) - dhms(event_begin_date,0,0,(input(event_begin_time, time.)))
format =time8. as duration,
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.