Emece
You can use VBA Workbook_Open code to go to the specific sheet.
Right-click on the Excel Icon at top-left corner of Menu Bar. Select "View
Code. Paste this code in there. Save the file.
Sub WorkBook_Open()
WorkSheets("Sheet2").Activate
End Sub
OR use Workbook_BeforeClose code to set the worksheet as the active sheet upon
closing the workbooK.
Note: with either of the above methods the code goes into the ThisWorkbook
module, not a general or worksheet module.
In a general module you would use Sub Aut
pen() or Sub Auto_Close()
Gord Dibben XL2002