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 (April 2009, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 28 Apr 2009 23:24:43 -0700
Reply-To:   pinu <amarmundankar@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   pinu <amarmundankar@GMAIL.COM>
Organization:   http://groups.google.com
Subject:   How to create a dataset by appending a single (i.e same) dataset multiple times.??
Comments:   To: sas-l@uga.edu
Content-Type:   text/plain; charset=ISO-8859-1

There is a dataset A as; id num 1 11 2 22 3 33 Now I want to create a dataset named A which will consists of records from A appended 100 times. Sample o/p of Dataset A will be: 1 11 2 22 3 33 1 11 2 22 3 33 .. .. .. .. Is there any other way than using the set statement and writing A 100 times after that e.g. . data A; set A A A . .... ..................; run;


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