Finding the next blank cell
Hi,
Can someone please explain why this throws up an error "Select method of
range class failed" (on the .Select line)
Sheets("ChartsM").Cells(5000, "N").End(xlUp).Select
Set rCurrentCell = ActiveCell
I have repace it with:
Do
Set rCurrentCell = rCurrentCell.Offset(1, 0)
Loop Until rCurrentCell.Value = ""
which works, but I'd like to undersand what I'm doing wrong.
TIA
Dave
|