Rookie question:
How do I set todays date in the footnote of a recurring report in SAS. I'm using ODS to an html file and want to have the current date in the footer. Thanks, John
use:
footnote .j=r "&sysdate9 &systime";
but remember that the date and time here is the date the SAS session started, so if you keep your session open for long periods of time (I keep them open for days), the date will be incorrect. In that case you need to set your own macro variable in your program.
Here is the footnote that EGuide generates. It will put today's date and time in the footer.
FOOTNOTE1 "Generated by the SAS System (&_SASSERVERNAME, &SYSSCPL) on %TRIM(%QSYSFUNC(DATE(), NLDATE20.)) at %TRIM(%SYSFUNC(TIME(), TIMEAMPM12.))";
Note the use of double-quotes so the macro variables will resolve.
Note, also, that HTML generates one (potentially very long) page, so the footer will only appear once.
Doc Muhlbaier
Duke
With slightly more work, you can control the format in which the date appears. Here, for example, you'll get YMD:
footnote .j=r "%sysfunc(today(), yymmdd10)";
Good luck.
Thnks All!
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.