Hi there.
It's said in SAS texts that statements in the Do Until execute at least once. Here is an example:
data invest;
capital = 5000;
do until (capital le 5000);
capital+2000;
capital+capital*0.1;
year+1;
end;
run;
The expected result to me is: capiatl=7700 and year=1. The actual result is capital=. and year=7341
Why is that?
Thanks,
Ramin
Message was edited by: RaminR
Message was edited by: RaminR