Can anyone suggest why this code isn't working?
Is there another way to do it?
I want each sheet to open according to the cells (in columns) that I want visible, so it docent matter what screen size is in use.
Do I need to call the sheets by the names I have given them?
Sub Workbook_Open()
Application.ScreenUpdating = False
Sheet1.Range("a11").Select
ActiveWindow.Zoom = True
Sheet5.Range("a1:n1").Select
ActiveWindow.Zoom = True
Sheet2.Range("a11").Select
ActiveWindow.Zoom = True
Sheet3.Range("a11").Select
ActiveWindow.Zoom = True
Sheet9.Range("a1:n1").Select
ActiveWindow.Zoom = True
Sheet6.Range("a1:s1").Select
ActiveWindow.Zoom = True
Sheet7.Range("a1:n1").Select
Application.ScreenUpdating = True
End Sub
Is there another way to do it?
I want each sheet to open according to the cells (in columns) that I want visible, so it docent matter what screen size is in use.
Do I need to call the sheets by the names I have given them?
Sub Workbook_Open()
Application.ScreenUpdating = False
Sheet1.Range("a11").Select
ActiveWindow.Zoom = True
Sheet5.Range("a1:n1").Select
ActiveWindow.Zoom = True
Sheet2.Range("a11").Select
ActiveWindow.Zoom = True
Sheet3.Range("a11").Select
ActiveWindow.Zoom = True
Sheet9.Range("a1:n1").Select
ActiveWindow.Zoom = True
Sheet6.Range("a1:s1").Select
ActiveWindow.Zoom = True
Sheet7.Range("a1:n1").Select
Application.ScreenUpdating = True
End Sub