![]() |
Always open a workbook on Sheet1 regardless of sheet viewed when lastsaved
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 |
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 |
Always open a workbook on Sheet1 regardless of sheet viewed whenlast saved
Thanks Bob. It works just as I had hoped.
Michael |
All times are GMT +1. The time now is 07:05 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com