Excel startup window

V

vanderdoes

When I startup Excel by clicking on a spreadsheet file sometimes it
starts up with the spreadsheet in full window mode and sometimes not.
Is there a startup parameter to force it full screen?

Thanks!
 
R

Richard

Find the little Excel workbook icon near the upper left corner of the
workbook window, just to the left of the File menu option. Right click on the
icon, left click on view code, and paste this in.

Sub Workbook_Open()
ActiveWindow.WindowState = xlMaximized
End Sub
 
Top