Always display a particular worksheet upon opening Excel 2003
Private Sub Workbook_Open()
Thisworkbook.Worksheets("sheet_name").Activate
End Sub
This is workbook event code.
To input this code, right click on the Excel icon on the worksheet
(or next to the File menu if you maximise your workbooks),
select View Code from the menu, and paste the code
--
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
"SomeHelp" wrote in message
...
I have a Excel document that contains multiple worksheets.
When I open the document, I want it to always open with a particular
worksheet displayed (rather than the one displayed when I last saved the
document).
How do I achieve this please?
|