#1   Report Post  
Posted to microsoft.public.excel.misc
Eric Shamlin
 
Posts: n/a
Default default start tab?

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   Report Post  
Posted to microsoft.public.excel.misc
tjtjjtjt
 
Posts: n/a
Default default start tab?

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   Report Post  
Posted to microsoft.public.excel.misc
Duke Carey
 
Posts: n/a
Default default start tab?

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Default Dates Sue Excel Discussion (Misc queries) 1 July 22nd 05 12:29 PM
Setting a default save folder for a template postitnote100 Excel Discussion (Misc queries) 1 July 8th 05 09:30 PM
Setting and KEEPING the default chart redbelly Charts and Charting in Excel 0 June 30th 05 02:35 PM
how do i set default font / text size in comments? philk Setting up and Configuration of Excel 1 November 28th 04 03:20 PM
Inserting Blank Rows Macro? Michael Saffer Excel Worksheet Functions 2 November 9th 04 06:23 PM


All times are GMT +1. The time now is 11:24 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"