Date: Fri, 23 Jun 2000 11:09:31 -0500
Reply-To: "Workman, Robert" <rworkman@CARBOMEDICS.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Workman, Robert" <rworkman@CARBOMEDICS.COM>
Subject: Re: More details on Date and Time
Content-Type: text/plain
Seems like a reasonable request, unfortunately I don't know of any way. One
thing you might try is to use OPTIONS NODATE and get rid of the date
altogether in the title. Then add your time macro to a footnote statement.
This code would have to be run each time you created output.
For instance
%let tm = %sysfunc(date(), weekdate.) %sysfunc(time(), time.);
footnote "&tm";
*** footnote:
Friday, June 23, 2000 11:14:02
Rob Workman
> -----Original Message-----
> From: Peter Flom [SMTP:peter.flom@NDRI.ORG]
> Sent: Friday, June 23, 2000 8:31 AM
> To: SAS-L@LISTSERV.UGA.EDU
> Subject: More details on Date and Time
>
> Two people already replied to my earlier request for printing the date and
> time with suggestions along the lines of
>
> %put %sysfunc(datetime(), datetime.);
>
>
> Thanks for the prompt replies
>
> Is there a way to make this the default, so that I don't need to put this
> line in every time? I can't foresee ever needing the date and time when I
> last started SAS in my output
>
> Thanks again
>
> Peter
|