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,
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.