The following assumes that you're using Column "A" to
see where your next empty cell is. Actually, it's looking
from the bottom of the sheet upwards to find the last
non empty cell in column "A" and then moving down one
row.
Paste the following into a regular module.
Alt + F11
Right click "ThisWorkbook" in the "Projects" window.
Select "Insert/Module"
Paste the following into the Module window on the right
Sub Auto_Open()
Range("A65536").End(xlUp).Offset(1, 0).Select
End Sub
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.