| Date: | Mon, 9 Jul 2007 08:51:32 -0400 |
| Reply-To: | ben.powell@CLA.CO.UK |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | ben.powell@CLA.CO.UK |
| Subject: | Re: Looping macro |
|---|
This may also be useful from TD I believe:
data _null_;
call execute( repeat( '%test' , 10 ) );
run;
HTH.
|