Greetings,
This is what I'm working with...
I am getting the compile error at "First"
How can I reference these two GoTo chunks properly?
Thanks!
This is what I'm working with...
Code:
If Range(Cells(k, b)) <> "" Then GoTo First Else GoTo Second
First
Set h = Range(Cells(k, k.End(xlToRight)))
k = k - 1
End If
Loop
Second
h.Copy
Range.Cells(k, b).PasteSpecial Paste:=xlPasteValues
k = k - 1
End If
Loop
I am getting the compile error at "First"
How can I reference these two GoTo chunks properly?
Thanks!