How to set up a worksheet to open where the next text should go?

  • Thread starter Thread starter whazzuptoo
  • Start date Start date
W

whazzuptoo

How can I get the worksheet used by many in our office open to the cell that
should be used next?
 
Right-click the sheet tab, select View Code, enter this:
Private Sub Worksheet_Activate()
Cells(Cells.Rows.Count, 1).End(xlUp).Offset(1).Select
End Sub
 

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