Date: Thu, 29 Jun 2006 01:41:42 -0700
Reply-To: Eric Hoogenboom <erichoogenboom@YAHOO.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Eric Hoogenboom <erichoogenboom@YAHOO.COM>
Organization: http://groups.google.com
Subject: Re: Selecting intersection variables
Content-Type: text/plain; charset="iso-8859-1"
Isabelle,
If you want to use the code on existing datasets use the SET statement
to read from an existing dataset and copy the ARRAY / DO loop part.
data new;
set existing;
array a_col .. ;
do over a_col;
...
end;
run;
Hth,
Eric
(snip)
... in this cas i
need to adapt the code so it can deal with SAS datasets that already
exist in a SAS library.
(snip)
|