How does the statement between inner and outer do loop execute? Under which conditions is it necessary to put statement between inner and outer loop?
data test1; put _all_; do i= 1 to 2; a=10; do j=1 to 3; put _all_; output; end; end; run; data test2; put _all_; do i= 1 to 2; do j=1 to 3; a=10; put _all_; output; end; end; run;
The difference would be when to you want to change a value or perform an action.
If you want to execute it before the J loop, then the first. If you want to change the value or do the action each time then inside the inner loop. Your example doesn't really show much difference. But look at this difference:
data test1;
put _all_;
a=0;
do i= 1 to 2;
a= a + 1;
do j=1 to 3;
put _all_;
output;
end;
end;
run;
data test2;
put _all_;
a=0;
do i= 1 to 2;
do j=1 to 3;
a= a + 1;
put _all_;
output;
end;
end;
run;
You may want to do something only after the the inner loop has completed, in which case it would go after the inner loop.
The difference would be when to you want to change a value or perform an action.
If you want to execute it before the J loop, then the first. If you want to change the value or do the action each time then inside the inner loop. Your example doesn't really show much difference. But look at this difference:
data test1;
put _all_;
a=0;
do i= 1 to 2;
a= a + 1;
do j=1 to 3;
put _all_;
output;
end;
end;
run;
data test2;
put _all_;
a=0;
do i= 1 to 2;
do j=1 to 3;
a= a + 1;
put _all_;
output;
end;
end;
run;
You may want to do something only after the the inner loop has completed, in which case it would go after the inner loop.
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.