Date: Fri, 1 May 1998 09:48:27 -0700
Reply-To: "William W. Viergever" <wwvierg@IBM.NET>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: "William W. Viergever" <wwvierg@IBM.NET>
Subject: Re: Options Date/Nodate
In-Reply-To: <35492E5D.EA9@worldnet.att.net>
Content-Type: text/plain; charset="us-ascii"
I usually include the following to do a date at the bottom (along with the data source and pgm name):
%let pgm1=ez_chk23;
data _null_;
call symput("fdate",trim(left(put("&sysdate"d,worddate.))));
run;
*==============================================================================;
*-- our standard footnotes;
footnote1 "Source: Blah blah blah's EZCap Data Dump";
footnote2 "Prepared by: Viergever & Associates, Sacramento, CA";
footnote3 "[&pgm1..sas, &systime &sysday, &fdate]";
*==============================================================================;
At 10:07 PM 4/30/98 -0400, Robert Schechter wrote:
>kmhall@URAM.COM wrote:
>>
>> I know how to add and remove the date on my SAS reports with the Options
>> statement - but is there a way to use a different date format?
>>
>> -----== Posted via Deja News, The Leader in Internet Discussion ==-----
>> http://www.dejanews.com/ Now offering spam-free web-based newsreading
>We use the Nodate option. Retrieve the system date and add it to the
>title1 statement with our specified format.
>
>HTH,
>Bob
>
>
/*=====================*/
W. W. Viergever
Viergever & Associates
Sacramento, CA
(916) 923-2355
/*=====================*/
|