View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
galimi[_2_] galimi[_2_] is offline
external usenet poster
 
Posts: 65
Default Go to a specific sheet on open

Andy,

Copy the following code into the ThisWorkbook object in VBE.

Private Sub Workbook_Open()

ThisWorkbook.Sheets("Index").Activate

End Sub

http://HelpExcel.com

"Andy Josolyne" wrote:

I would like the workbook to go to a specifc worksheet on opening e.g. Index.
I there a macro I can use? Many thanks for your assistance.

Regards

Andy