Is there an onload event in Excel?

  • Thread starter Thread starter loric
  • Start date Start date
L

loric

I am trying to make an excel file maximize when the page is loaded. I
don't see an onload event, does anyone know if there is one?

Lori
 
If you right click on the Excel icon in the upper left corner of the Excel
window and select View code it wil take you to ThisWorkbook in the VBE. There
are two drop down's just above the code window. Change the one on the left to
workbook and the other to OnOpen...
 
The dropdown on the right should be named "Workbook_Open" (not OnOpen).

Your (the OP's) code could look like:

Option Explicit
Private Sub Workbook_Open()
Application.WindowState = xlMaximized
ActiveWindow.WindowState = xlMaximized
End Sub
 
Back
Top