User Interface Elements in Excel 2010

Excel has various options that enable you to hide elements in order to customize your workspace. In some cases, you can change the display options in more than one place. For each of the elements listed in this section, I show you the easiest Hide method possible.

 

From the Ribbon

Change the following settings by using controls on the Ribbon:

 

 

From the keyboard

Modify the items below by using the keyboard:

 

From the Excel Options dialog box

You change the following settings from the Advanced tab in the Excel Options dialog box. To display this dialog box, choose File➜Options and then click the Advanced tab. Scroll down, and you see three groups of options, as below.

Following are some of the more useful display options:

 

A setting that requires a macro

Turning off the display of one user interface element requires a macro. The status bar, at the bottom of the Excel window, displays a variety of information. In versions prior to Excel 2007, the user could turn the status bar display on or off. Now, a VBA macro is required to toggle the status bar display:

 

Sub ToggleStatusBar()

With Application

.DisplayStatusBar = Not .DisplayStatusBar

End With

End Sub


Back