BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SAS_inquisitive
Lapis Lazuli | Level 10

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;
1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

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.

 

View solution in original post

1 REPLY 1
ballardw
Super User

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.

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1400 views
  • 0 likes
  • 2 in conversation