Hello,
I have certain test sessions with a start and end time. Different tests are performed on the session. These tests also have a beginning and an end time.
Now I want to calculate how much time before, within and after the session falls. The hours and minutes may also be in decimals.
I calculate this in Excel, but I want to calculate this in EG now. Do you see opportunities to make this possible? In EG these are two separate tables (Sessions and To_test).
See my example in Excel.
Thank you very much.
I found this here: https://blogs.sas.com/content/sgf/2015/01/21/sas-timer-the-key-to-writing-efficient-sas-code/
/* Start timer */
%let _timer_start = %sysfunc(datetime());
/* Stop timer */
data _null_;
dur = datetime() - &_timer_start;
put 30*'-' / ' TOTAL DURATION:' dur time13.2 / 30*'-';
run;
The resulting output in the SAS log will look like this:
------------------------------
TOTAL DURATION: 0:01:31.02
------------------------------
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.