Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I've created a fairly big excel workbook, that many people will use in our
office. It's built to be as "dummy proof" as possible, meaning I have hyperlinks connect much of the document and a lot of things auto-fill. I've locked/hidden many things so they can't break it. I have a simple question: Can I set a default tab? Meaning, no matter how the document is saved, when they open it it'll always open to a specific tab - in this case a Table of Contents tab. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In your Workbook_Open event:
Worksheets("Table of Contents").Activate Right-click the Excel icon in the top left corner of the window. Click View Code. Choose Workbook from the Object list. Type the code in the procedure. -- tj "Eric Shamlin" wrote: I've created a fairly big excel workbook, that many people will use in our office. It's built to be as "dummy proof" as possible, meaning I have hyperlinks connect much of the document and a lot of things auto-fill. I've locked/hidden many things so they can't break it. I have a simple question: Can I set a default tab? Meaning, no matter how the document is saved, when they open it it'll always open to a specific tab - in this case a Table of Contents tab. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
With code that selects the Table of Contents sheet before saving (not
advised, in case somebody is saving periodically while working, the code will move them away from their work), or with code that runs when the workbook is opened and selects the TOC sheet Private Sub Workbook_Open() Thisworkbook.worksheets(toc sheet name in quotes).activate End Sub "Eric Shamlin" wrote: I've created a fairly big excel workbook, that many people will use in our office. It's built to be as "dummy proof" as possible, meaning I have hyperlinks connect much of the document and a lot of things auto-fill. I've locked/hidden many things so they can't break it. I have a simple question: Can I set a default tab? Meaning, no matter how the document is saved, when they open it it'll always open to a specific tab - in this case a Table of Contents tab. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Default Dates | Excel Discussion (Misc queries) | |||
Setting a default save folder for a template | Excel Discussion (Misc queries) | |||
Setting and KEEPING the default chart | Charts and Charting in Excel | |||
how do i set default font / text size in comments? | Setting up and Configuration of Excel | |||
Inserting Blank Rows Macro? | Excel Worksheet Functions |