Set Active Worksheet onOpen

  • Thread starter Thread starter BananaQuaalude
  • Start date Start date
B

BananaQuaalude

How do I specify which worksheet I want activated in the Workbook_ope
event?

Thanks
 
Just use:

Private Sub Workbook_Open()

Application.ScreenUpdating = False 'Prevent screen flicker
Sheets("Sheet1").Select
Application.ScreenUpdating = True

End Sub
 
In the Workbook module, in the Open event:

Sheets("My Sheet Name Here").Activate

'Cheers, Pete
 

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