Excel 2010 open in full screen

  • Thread starter Thread starter pcor
  • Start date Start date
P

pcor

Hi
What do I have to do to get EXCEL 2010 to open in FULL SCREEN.
I now save all my data while the screen is full and then shut it
down...bUT when I reopen EXCEL it is NEVER in full screen and I have
to adjust it every tiem
I would appreciate the help
Thanks
 
Hi pcor,

you can run this code:

Sub Macro1()
Application.DisplayFullScreen = True
End Sub

Please tell me does it work for you.
 
Hi pcor,

I'm sorry, my answer was not complete. You should add autorun macros
like this:

Sub Auto_open()
Application.DisplayFullScreen = True
End Sub
 
Back
Top