Making one sheet always be the default when opening up excel

R

Rob

Hello, I have a program that has many sheets (25). I have one sheet as my
"home page" where I always want users to start. Is there a way to set up
excel so anytime someone opens this particular workbook they always see the
"Home Page" sheet?

Users may save the program under new names, etc. But I am hoping I can set
a default to always open the home page.

Thanks!
 
C

CLR

It would take a macro........

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Sheets("YourHomePageSheetName").Select
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top