Greetings,
I am receiving a loop without Do error at the second "loop". Is it possible to loop to the same initial "Do Until" statement from more than one point? I would like to loop back to the initial point from each GoTo statement.
I am receiving a loop without Do error at the second "loop". Is it possible to loop to the same initial "Do Until" statement from more than one point? I would like to loop back to the initial point from each GoTo statement.
Code:
k = Range(Cells(Rows.End(xlUp), b))
Do Until k = 1
If Range(Cells(k, b)) <> "" Then GoTo First Else GoTo Second
First:
Set h = Range(Cells(k, Column.End(xlToRight)))
k = k - 1
Loop
Second:
h.Copy
Range(Cells(k, b)).PasteSpecial Paste:=xlPasteValues
k = k - 1
Loop
End If