Link to home
Start Free TrialLog in
Avatar of Steve_Brady
Steve_BradyFlag for United States of America

asked on

View nothing but cells in Excel spreadsheet

Hello,

In Excel (2010), I'm trying to shave off everything around the perimeter so that the display shows nothing but spreadshet cells.  So far, I have been able to hide the following:

          • Row and Column headings
          • Formula bar
          • Horizontal and Vertical scrollbars
          • Status bar*

However,  I have not yet been able to determine how to hide the three remaining bars at the top:

          • Title bar
          • Row of tab headings
          • Quick Access Toolbar (QAT)

Is it even possible to hide or remove any or all of those bars?

Thanks

*I was not able to find a command in Excel Options to hide the Status bar.  However, some time ago an EE Expert gave me the following VBA code which does the trick:

Sub ToggleStatusBar()
Application.DisplayStatusBar = Not Application.DisplayStatusBar
End Sub

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of dlmille
dlmille
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Steve_Brady

ASKER

Dave, this works great.  Thanks a ton!
Glad it works for you!

Anything else you need on this one?

Dave
Thanks