RAJAQ
12/2/2016 - 11:26 AM

Do Until Loop > A program continues to execute a Do-While loop while the condition remains true. In a Do-Until loop, the program executes th

Do Until Loop > A program continues to execute a Do-While loop while the condition remains true. In a Do-Until loop, the program executes the loop until the condition is true.

Sub DoUntilDemo()
    
    Do Until IsEmpty(ActiveCell.Value)
        ActiveCell.Value = ActiveCell.Value * 2
        ActiveCell.Offset(1, 0).Select
    Loop
          
End Sub