BookmarkSubscribeRSS Feed
jgautreau
Fluorite | Level 6


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

4 REPLIES 4
OS2Rules
Obsidian | Level 7

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.

Doc_Duke
Rhodochrosite | Level 12

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

Astounding
PROC Star

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.

jgautreau
Fluorite | Level 6

Thnks All! 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 7175 views
  • 7 likes
  • 4 in conversation