Hello
The first thing in my macro is to move to the next empty cell - which I've done using this:
Selection.End(xlDown).Select
Selection.End(xlToLeft).Select
ActiveCell.Offset(1).Select
This works fine if the active cell is occupied with data, but if it's already on the empty cell then it goes all the way to the very bottom and then gives me an error.
Is there any way around this?
Pendle
The first thing in my macro is to move to the next empty cell - which I've done using this:
Selection.End(xlDown).Select
Selection.End(xlToLeft).Select
ActiveCell.Offset(1).Select
This works fine if the active cell is occupied with data, but if it's already on the empty cell then it goes all the way to the very bottom and then gives me an error.
Is there any way around this?
Pendle