Hi
You might need to do something like the below:
Range("E8").Select
Selection.End(xlDown).Select
Selection.End(xlUp).Select
ActiveCell.Offset(1).Select
I'm not sure - but hopefully should work. I tried to replicate the problem in Excel, but with no luck - when I tried it, it selected the next blank cell. If this doesnt work you could try something like:
Range("E1048576").Select
Selection.End(xlUp).Select ' Repeat a few times to ensure it gets to to the top
Selection.End(xlDown).Select
ActiveCell.Offset(1).Select
Bookmarks