W whazzuptoo Jul 13, 2009 #1 How can I get the worksheet used by many in our office open to the cell that should be used next?
B Bob Umlas Jul 13, 2009 #2 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
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