Hi,
I have trouble running this. I would like values for x.
data A;
y=1 to 200;
do i = 1 to 5 while (y-i>0);
x=(y-i)*3;
output;
end;
Thanks!
I am not sure what is the output you seeking is look like exactly ;
But maybe this is what you want
data A;
do y=1 to 200;
do i = 1 to 5 while (y-i>0);
x=(y-i)*3;
output;
end;
end;
run;
So you will have two loops one for y and the other for i
and each loop should end by END; statment.
Then the above code is what you want.
Perhaps your loops should begin like this:
do y=1 to 200;
do i = 1 to y-1;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.