Date: Thu, 15 Nov 2001 15:52:12 -0600
Reply-To: aldi@wubios.wustl.edu
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Aldi Kraja <aldi@WUBIOS.WUSTL.EDU>
Organization: Washington University
Subject: Re: stacking large numbers of data sets
Content-Type: text/plain; charset=us-ascii
Hi Ed,
You have a mistake in the macro invocation
You are using & instead of %
Aldi
Edward Heaton wrote:
> %macro stackEm ( all= ) ;
> data my_data_set_stack ;
> set
> %do i=1 %to &n ;
> data_set_&i
> %end ;
> ;
> run ;
> %mEnd stackEm ;
> &stackEm(all=50)
>
> Ed
--
|