Automatically go to a certain cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

is there a way, once asheet is opedned in excel, to move the cursor to the
botto mof the sheet?

For example, if I have data from row 1 through 100, when i open the sheet my
cursor would automatically go to the bottom at row 101. Then after I fill in
data for more rows, the cursor would autoamtically go to the next un-used row.

Is that possible?
 
Workook open event


Private Sub Workbook_Open()
Range("A65536").End(xlUp).Select
End Sub

You never said which column so A is assumed

Mike
 
Try this

Private Sub Workbook_Open()
Range("A65535").End(xlUp).Offset(1, 0).Activate
End Sub
 
Thanks Mike.

Yes, I am using column A. For some reason the code does not work. I pasted
it into "view code" and saved the sheet. When I go ito the sheet, the cursur
does not automatically go to the first cell in column A that does not have
typing in it.

Any ideas?
 

Ask a Question

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.

Ask a Question

Back
Top