Auto_Open(), which does not seem fully capable anyway (it doesn't recognise maximising the application window when recording), also does not run.
For reference, here is the Workbook_Open() code:
Code:
Sub workbook_Open()
'Always maximise the Excel window and workbook
Application.WindowState = xlMaximized
ActiveWindow.ActivateNext
ActiveWindow.WindowState = xlMaximized
End Sub
I found that the Worksheet_Activate() code actually is firing - I just didn't notice because the Workbook_Open() was failing.
Bookmarks