Date: Tue, 5 Mar 2002 14:01:43 -0800
Reply-To: prasad.s.ravi@HOUSEHOLD.COM
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Prasad Ravi <prasad.s.ravi@HOUSEHOLD.COM>
Subject: Re: is there any efficient way concatenating SAS data sets?
Content-type: text/plain; charset=us-ascii
%MACRO CONCAT(NUM);
DATA NEW;
SET %DO I=1 %TO &NUM;
TABLE&I
%END;
;
RUN;
%MEND CONCAT;
%CONCAT(2000);
Prasad Ravi
"P. L" To: SAS-L@LISTSERV.UGA.EDU
<li_9@HOTMAIL.COM cc:
> Subject: is there any efficient way concatenating SAS data
Sent by: "SAS(r) sets?
Discussion"
<SAS-L@LISTSERV.U
GA.EDU>
03/05/2002 01:25
PM
Please respond to
"P. L"
I'll use SET to concatenating about 2000 SAS data sets (table1-table2000).
Is there any efficient way to complete the job without listing each file?
Any help will be greatly appreciated.
P.L