I know I need a loop for this but I just can’t construct it (Using "GoTo line simply for testing")
VBA Code:
If Selection.Cells.Count > 2 Then
MsgBox "Want to continue and clean things up ? "
FirstRow = Range("MyRange").Cells.Find("*", SearchOrder:=xlByRows, _
SearchDirection:=xlNext).Row
LastRow = Range("MyRange").End(xlDown).Row
Line1:
Range("B" & FirstRow - 1).Select
Range("B" & FirstRow - 1).Delete
Range("MyRange").Select
If Selection.Cells.Count > 2 Then
GoTo line1
Else
Range("MyRange").ClearContents
End If