![]() |
![]() |
|
|||||||
| 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: Apr 2002
Location: Ireland
Posts: 107
|
How do u make a certain sheet in workbook be the first one the user sees when they open the workbook? Thanks
__________________
[Brian] |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Sunny, spring-like Hull
Posts: 3,339
|
Try the following in the workbook code module: -
Private Sub Workbook_Open() Sheet1.Activate 'or use Sheets(x).Activate 'or use Worksheets("SheetName").Activate End Sub where x is the index no of the sheet or SheetName is the name of the worksheet you want to display. |
|
|
|
|
|
#3 |
|
New Member
Join Date: Mar 2002
Posts: 4
|
You could record a macro and edit it through the visul basic editor
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|