Opening to a default tab?

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

Hello,

Is there a way to get a workbook to default to a certain tab when opening
the file? I noticed that it opens to whatever page was open when last saved
but I want it to always open to the first sheet regardless. Any ideas?

Thank you in advance,
Joe
 
Use the Workbook_open event in ThisWorkbook module or an auto_open macro in
a regular module
sub auto_open()
sheets("mysheet").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

Back
Top