BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
rohit_95
Calcite | Level 5

Please explain how the do until loop as shown in the picture iterates to give the output as show in the other picture.

y.pngx.png

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

DO UNTIL means that the loop iterates until the condtion IS true.

On the first iteration X=5 so that is less than 50 so the loop continues. On the second iteration X=10 which is also less than 50, etc.

View solution in original post

5 REPLIES 5
Shmuel
Garnet | Level 18

The code X+5; (whithout the equal = sign) means: start with 0 and add 5 at each iteration.

 

do until (x>50); means to stop loop at the given condition.

rohit_95
Calcite | Level 5
but at x=5 or any value less than 50 the statements within the do group shouldn't get executed but it is getting executed and that is my doubt.
Tom
Super User Tom
Super User

DO UNTIL means that the loop iterates until the condtion IS true.

On the first iteration X=5 so that is less than 50 so the loop continues. On the second iteration X=10 which is also less than 50, etc.

Tom
Super User Tom
Super User

SAS code is just simple text. Paste in the text so that it is readable and can be copied.  Use the Insert SAS code icon to get a pop-up window where you can paste the code so that it retains its formatting.

 

Posting photogrpahs of text takes longer than pasting the actual text. So it is a waste of your time and of the readers time.

Reeza
Super User

As someone else mentioned, please post input and output as text, not images. 

 


@rohit_95 wrote:

Please explain how the do until loop as shown in the picture iterates to give the output as show in the other picture.

y.pngx.png


 

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

Develop Code with SAS Studio

Get started using SAS Studio to write, run and debug your SAS programs.

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
  • 5 replies
  • 2407 views
  • 2 likes
  • 4 in conversation