VBA – Display (or Exit) Fullscreen


Display Fullscreen

You can launch Excel to display fullscreen using VBA by using this line of code:



Application.DisplayFullScreen = True

Exit Fullscreen

To exit fullscreen using VBA:



Application.DisplayFullScreen = False