Open workbook at specific sheet

  • Thread starter Thread starter Adele Russell
  • Start date Start date
A

Adele Russell

How do I open a particular workbook and get it to go to a
specific sheet ie Sheet 2
 
Hi
put the following code in your workbook_module
Private Sub Workbook_Open()
Worksheets("Sheet2").Activate
End Sub

HTH
Frank
 
Hi Frank
Appreciate your assistance
Thanks
-----Original Message-----
Hi
put the following code in your workbook_module
Private Sub Workbook_Open()
Worksheets("Sheet2").Activate
End Sub

HTH
Frank




.
 

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