Date: Mon, 2 Jun 2003 06:01:28 -0700
Reply-To: Thomas_raffinot <traffinot@YAHOO.FR>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Thomas_raffinot <traffinot@YAHOO.FR>
Organization: http://groups.google.com/
Subject: create data
Content-Type: text/plain; charset=ISO-8859-1
It’s hard to explain for me then I prefer give an example of what I would do :
I have a table like that
indic X2 X3 X4
1 a 2 4
2 b 1 3
…
n c 1 4
I want to create n tables like that
Data1
X2=a;
X3=2;
X4=4;
Output;
How can I do that with a macro?
|