View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_3_] Bob Phillips[_3_] is offline
external usenet poster
 
Posts: 2,420
Default Always open a workbook on Sheet1 regardless of sheet viewed when last saved

Private Sub Workbook_Open()
With Me

If .Worksheets("Sheet1").Range("A1").Value 0 Then

.Worksheets("Sheet1").Activate
End If
End With
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--
__________________________________
HTH

Bob

"Michael Lanier" wrote in message
...
Is there a macro that will always open a workbook on a designated
worksheet regardless of what sheet the file was saved on when last
visited? I would like to always open the workbook on Sheet1 if the
value of Sheet1!A10. Thanks for any help.

Michael