G
Guest
I need to know how to modify an excel shortcut to make a file always open to
a specific named "intro" sheet.
a specific named "intro" sheet.
David McRitchie said:since I got a non zero error return code in Excel 2002 even if the sheet was found
I will just put the sheets in an order so that the last one is the most preferred,
as I understand the question.
Right click on the logo to the left of the menu from Excel to open Thisworkbook
place the following code after Option Explicit
Sub WorkBook_Open()
On Error Resume Next
Sheets(1).Select '-- 1st worksheet
Sheets("intro").Select
Sheets("toc").Select
On Error GoTo 0
End Sub