View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Umlas[_3_] Bob Umlas[_3_] is offline
external usenet poster
 
Posts: 320
Default How to set up a worksheet to open where the next text should go?

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


"whazzuptoo" wrote in message
...
How can I get the worksheet used by many in our office open to the cell
that
should be used next?