davedave24
Programmer
Hi. I have a problem using Selection.End(xlUp) - I need it to disregard cells with formulas in.
I've tried to substitute for a Do-While loop but it has the same effect (albeit with a different outcome)
I've tried to substitute for a Do-While loop but it has the same effect (albeit with a different outcome)
Code:
Do Until ActiveCell.Value = ""
ActiveCell.Offset(-1, 0).Select
Loop