Date: Mon, 11 May 1998 15:39:07 GMT
Reply-To: GullionC <gullionc@AOL.COM>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: GullionC <gullionc@AOL.COM>
Organization: AOL http://www.aol.com
Subject: Re: Simulation Problem
In article <355135DE.61A@showme.missouri.edu>, Garry Young
<polsgy@showme.missouri.edu> writes:
> %Let I = 1;
> %Do %While (&I<1000);
>
>stuff deleted
>%Let I = (&I + 1);
> %End ;
>
>
---------------------------------
While the solutions offered are better approaches than yours, I think the real
reason you are having a problem is that I never gets to 1000. The %Let I
statement needs to be changed to
%Let I = %Eval(&I + 1);
Chris
Christina M. Gullion, Ph.D.
Biostatistician, Clinical Research Dept
Medical City Dallas Hospital
The opinions expressed here are mine and not those of MCDH
|