About 50 results
Open links in new tab
  1. Do... Loop Until with multiple conditions - Stack Overflow

    Do ' some operations Select Case False Case Condition1 Case Condition2 Case Condition3 Case ConditionN Case Else Exit Do End Select Loop Such code allows to improve performance and …

  2. python - How to emulate a do-while loop? - Stack Overflow

    1128 I need to emulate a do-while loop in a Python program. Unfortunately, the following straightforward code does not work:

  3. Difference between "while" loop and "do while" loop

    Sep 2, 2010 · The do while loop executes the content of the loop once before checking the condition of the while. Whereas a while loop will check the condition first before executing the content. In this …

  4. Do loop within SAS Macro - Stack Overflow

    Apr 23, 2020 · I am attempting to create a macro that will iterate through the string values of a column. Here is the data: SUBJECT VISIT PARAMETER 001 Baseline param1 ...

  5. Do .. While loop in C#? - Stack Overflow

    Mar 29, 2010 · Do..while is the way to go when you want to run some code, check or verify something (normally depending on what happened during the execution of that code), and if you don't like the …

  6. using of multiple do while loop in VBA - Stack Overflow

    I would like to ask you how to use multiple do while or if there is another way how to automate this type of calculation. I have worksheet with closing prices of stocks named Closed. On another sh...

  7. How to write VBA with Do While Loop? - Stack Overflow

    Jul 11, 2013 · How to write VBA with Do While Loop? Asked 12 years, 8 months ago Modified 12 years, 8 months ago Viewed 36k times

  8. SAS - Break out of macro %DO loop - Stack Overflow

    4 If you want to break out of a macro completely, you can use %abort (if you want to trigger an error) or %return (if you don't). These won't help if you just want to break out of a loop and carry on with the …

  9. Is there a do-while loop in bash? - Stack Overflow

    Even though the accepted answer suggests that there is in fact a way to write do-while loops in bash, I would still do it this way as this way obeys set -e and the accepted answer's way does not appear to.

  10. How do I loop through a set of records in SQL Server?

    How do I loop through a set of records from a select statement? Say I have a few records that I wish to loop through and do something with each record. Here's a primitive version of my select state...