Setting default worksheet in a workbook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to know if it is possible to set a default page in a workbook so when the workbook is viewed, changed, and closed, it will open to a certain page each time.
 
Not without building a macro


On ThisWorkbook module paste this code

Change Sheet2 to your sheet name



Private Sub Workbook_Open()
Sheets("Sheet2").Activate
End Su
 

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

Back
Top