Do-Until loop and IsEmpty : ActiveCell « Excel « VBA / Excel / Access / Word
Do-Until loop and IsEmpty Sub DoUntilDemo() Do Until IsEmpty(ActiveCell.value) ActiveCell.value = ActiveCell.value * 2 ActiveCell.offset(1, 0).Select Loop End Sub Related examples in the same category...