I'm trying to write the current datetime to my log when my program ends. I'm obviously not getting my expected result. Any ideas where I'm going wrong here?
data _null_;
dt_stamp = today();
PUT 'Progam Stopped: ' dt_stamp datetime20.;
run;
Progam Stopped: 01JAN1960:05:45:32
Back to the future!
The TODAY() function doesn't return a date-time value. It just returns a date. You could switch to DATETIME() instead.
Back to the future!
The TODAY() function doesn't return a date-time value. It just returns a date. You could switch to DATETIME() instead.
That worked for me. Thanks very much.
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 save with the early bird rate—just $795!
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.