How do I make two conditions for a loop?
Essentially I want to do the following:
Sub SubMac4_1Loop()
Do Until ActiveCell.Value = "X"
**or until ActiveCell.Offset(1,1) = ""**
Selection.EntireRow.Delete
Loop
End Sub
Obviously this won't work, but I need to know how to accomplish this.