|
Using the
Act.Talent data set, reference an automatic
macro variable. |
-
Copy the program below and paste it into the Program Editor window (or issue the command
copy sashelp.oltutor..source ). Submit the program and view the footnote that displays the date when
the SAS session began.
title;
footnote "Date: &sysdate9";
data act.talent99;
set act.talent;
if year(lasthired)=1999;
format birthdate lasthired date.;
run;
proc print data=act.talent99;
run;
-
Rewrite the FOOTNOTE statement to also display the day of the week that the
SAS session began. Submit the code and view the footnote again.
-
Cancel the FOOTNOTE statement.
Return here and select Next.
|
Copyright © 2002 SAS Institute Inc.,
Cary, NC, USA.
All rights reserved.
Terms of Use & Legal Information
| Privacy Statement