| Date: | Sat, 16 Feb 2008 07:12:51 -0700 |
| Reply-To: | Alan Churchill <savian001@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Alan Churchill <savian001@GMAIL.COM> |
| Subject: | Re: sas macro language |
|
| In-Reply-To: | <77343178E87F433FA8EDA88C51B0ABAD@aktuare.local> |
| Content-Type: | text/plain; charset="iso-8859-1" |
Use the following:
DATA table1_&data.1
Alan
Alan Churchill
Savian
www.savian.net
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Stefan
Pohl
Sent: Saturday, February 16, 2008 7:07 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: sas macro language
Hi sas-group,
%MACRO ward(data);
...
DATA table1_&data1; * <-- this does not work, I want to get test1, what is
to do?;
...
%MEND ward;
%ward(test)
Thank you for help.
Stefan.
|