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

Hi There,

 

Anybody can help to, how can I LEAVE the DO UNTIL loop?

 

While running the DO UNTIL loop, its an open statement, I want to stop/leave the loop after, say suppose iteration happen 10k times.

 

Thanks,

KP

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

proc iml;
do i=1 to 10 by 1 until(x=1);
 print i[l=''] 'XX' ;
 x=0;
end;
quit;

View solution in original post

3 REPLIES 3
Ksharp
Super User

proc iml;
do i=1 to 10 by 1 until(x=1);
 print i[l=''] 'XX' ;
 x=0;
end;
quit;

KrunalPatel
Calcite | Level 5

Thanks Ksharp

Rick_SAS
SAS Super FREQ

For more information and examples about loops in SAS/IML, see the article "Loops in SAS".

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 3 replies
  • 1014 views
  • 0 likes
  • 3 in conversation