Startup Tab

  • Thread starter Thread starter Larry S
  • Start date Start date
L

Larry S

Is there a way to specify which tab is active when a workbook opens? I'd like
to have one of our custom tabs be the active tab.

Thanks, Larry
 
Hi,

Alt + f11 to open VB editor. Ctrl+R to open project explorer, double click
'This Workbook' and paste this in on the right. Change the sheet name to suit

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

Mike
 

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