startup sheet

huorsa

Board Regular
Joined
Feb 15, 2002
Messages
101
How can I do that a specific sheet pops up when I open the workbook that contains it.

Hugo
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
You mean like, if I have "Sheet1", "Sheet2" and "Sheet3", how do I make "Sheet3" be the active sheet when the file is opened? You can do it this way.

1. Right-Click on the Excel icon to the left of the "File" menu.
2. Choose "View Code"
3. Copy and paste this code in:

Private Sub Workbook_Open()
Sheets("Sheet3").Activate
End Sub

The only problems with this are that you'll get a flicker of the first page no matter what you do. If you're not using macros in your workbook then you're substituting one mouse click for another. The user will now have to hit "Enable Macros" on startup.

One really easy way to make a specific page be the active page on startup is to move it to the front of the sheet order. To do this just drag and drop the sheet name tab to the start of the workbook.
 
Upvote 0
You said :-
"One really easy way to make a specific page be the active page on startup is to move it to the front of the sheet order."

This is not correct.
If a workbook is saved before closing, when it is re-opened the active sheet will be the one that was active when it was closed.
It follows, therefore, that another way (altho not necessarily preferable) of specifying the active sheet upon opening is by :-

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Worksheets("Sheet3").Activate
ThisWorkbook.Save
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top