I have a quick question about which I did not find specific information on the web. I want to perform a Do...Loop Until loop, but I would like to insert more th
Do...Loop Until
You can use And and/or Or:
And
Or
Do 'Your code Loop until condition1 And condition2
And will continue all the time all conditions are met. Or will continue when one or more of the conditions are met.
You can have any number of conditions.