Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I specify which worksheet I want activated in the Workbook_ope
event? Thanks -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just use:
Private Sub Workbook_Open() Application.ScreenUpdating = False 'Prevent screen flicker Sheets("Sheet1").Select Application.ScreenUpdating = True End Sub -- Message posted from http://www.ExcelForum.com |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In the Workbook module, in the Open event:
Sheets("My Sheet Name Here").Activate 'Cheers, Pete -----Original Message----- How do I specify which worksheet I want activated in the Workbook_open event? Thanks! --- Message posted from http://www.ExcelForum.com/ . |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
add non active worksheet | Excel Discussion (Misc queries) | |||
Copying the active worksheet to another worksheet in the same work | Excel Worksheet Functions | |||
how can I get the name of the active worksheet? | Excel Worksheet Functions | |||
active worksheet | Excel Programming | |||
macro to apply worksheet event to active worksheet | Excel Programming |