![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Feb 2002
Posts: 232
|
Hi,
Is there some code I can include so for when a workbook is opened it goes to a predefined sheet (for example "index") regardless of if they saved the workbook on a different tab. Thanks Matt |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Mar 2002
Location: Sydney/Brisbane , Australia
Posts: 539
|
auto_open ()
Sheets("defined").Select end sub |
|
|
|
|
|
#3 |
|
Banned
Join Date: Feb 2002
Posts: 1,582
|
Hi
Right click on the Excel icon tope left next to "File", select "View Code" and paste in this: Private Sub Workbook_Open() Sheets("index").Select End Sub Will do the same as Auto_open but is the preferred method. |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|