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

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 7141 views
  • 7 likes
  • 4 in conversation