Sep 18, 2001 #1 Maine Technical User Feb 4, 2001 41 US How do I set an Excel spreadsheet to open to the same worksheet every time?
Sep 19, 2001 #2 dsi Programmer Mar 13, 2000 964 US For a macro solution, put this subroutine in the ThisWorkbook module: Code: Option Explicit Private Sub Workbook_Open() Worksheets("Sheet1").Select End Sub Upvote 0 Downvote
For a macro solution, put this subroutine in the ThisWorkbook module: Code: Option Explicit Private Sub Workbook_Open() Worksheets("Sheet1").Select End Sub