Diane,
Next entry line????
In which column???
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
John