Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a excel file with several worksheets. I would like to ensure that a
specific worksheet is the active worksheet every time a user opens the file. Thanks in advance for any help. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Use the ThisWokbook module; open it and use the comboboxes three to navigate
to the Open event (go from "(General) -- (Declarations)" to "Workbook -- Open". Excel will create a stub for you like the one below. All you need to add is one line, also as shown. ------------------------------------------ Private Sub Workbook_Open() Worksheets("YourSpecialSheetName").Activate End Sub ------------------------------------------ "Duplicate entries" wrote in message ... I have a excel file with several worksheets. I would like to ensure that a specific worksheet is the active worksheet every time a user opens the file. Thanks in advance for any help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Open a blank worksheet at startup | Excel Discussion (Misc queries) | |||
Blank worksheet at startup | Setting up and Configuration of Excel | |||
Startup on a specific worksheet | Excel Discussion (Misc queries) | |||
How do I set a worksheet to be the default at startup? | Setting up and Configuration of Excel | |||
Excel worksheet startup | Excel Programming |