G Guest Mar 16, 2004 #1 I would like to know if it is possible to set a default page in a workbook so when the workbook is viewed, changed, and closed, it will open to a certain page each time.
I would like to know if it is possible to set a default page in a workbook so when the workbook is viewed, changed, and closed, it will open to a certain page each time.
M mudraker Mar 16, 2004 #2 Not without building a macro On ThisWorkbook module paste this code Change Sheet2 to your sheet name Private Sub Workbook_Open() Sheets("Sheet2").Activate End Su
Not without building a macro On ThisWorkbook module paste this code Change Sheet2 to your sheet name Private Sub Workbook_Open() Sheets("Sheet2").Activate End Su