LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (November 2001, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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

--


Back to: Top of message | Previous page | Main SAS-L page