| Date: | Fri, 29 Apr 2005 17:34:26 -0400 |
| Reply-To: | "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM> |
| Subject: | Re: How to find out the name of the _last_ dataset |
|
option _LAST_ and automatic macro variable SYSLAST are one in the same.
options _last_= A.B;
%put &syslast;
%let syslast = X.Y;
%put %sysfunc (getoption(_LAST_));
--
Richard A. DeVenezia
http://www.devenezia.com/
|