I am using the options date on the .rtf report to display the report creation date/time. But when I open the report later on, the date/time changes to the date/time of report opening, not of report creation.
How can I write the date/time to the .rtf file and make it stay, instead of dynamically change?
If you use
OPTIONS DATE;
to put the date in the title line in the RTF destination, it uses the RTF "current date" function. Argh! It's a "feature" that I really dislike.
To get the actual date in the title or footer, use the &sysdate macro variable in the TITLE or FOOTER and
OPTIONS NODATE;
> If you use
> OPTIONS DATE;
> to put the date in the title line in the RTF
> destination, it uses the RTF "current date" function.
> Argh! It's a "feature" that I really dislike.
>
> To get the actual date in the title or footer, use
> the &sysdate macro variable in the TITLE or FOOTER
> and
> OPTIONS NODATE;
Thank you very much for your message. I'll use the &sysdate.
> Hi:
> You also might want to check out the SASDATE
> option for the ODS RTF destination:
> ttp://support.sas.com/documentation/cdl/en/odsug/61723
> /HTML/default/a002233360.htm#a003137833
>
> ynthia