Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Controlling Display of the Formula Bar.

Controlling Display of the Formula Bar

Written by Allen Wyatt (last updated September 16, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365


1

The Formula Bar is the area at the top of the Excel window, just below the ribbon area or the Formatting toolbar, depending on your version of Excel. The Formula Bar has two parts: at the left is the Name Box, and to the right is the contents of the currently selected cell.

If you need more room to view a worksheet, or you don't need the information provided by the Formula Bar, you can turn it off. To control display of the Formula Bar, follow these steps:

  1. Display the Excel Options dialog box. (In Excel 2007 click the Office button and then click Excel Options. In Excel 2010 or a later version, display the File tab of the ribbon and then click Options.)
  2. At the left side of the dialog box click Advanced.
  3. Scroll down until you see the Display options. (See Figure 1.)
  4. Figure 1. The Advanced options of the Excel Options dialog box.

  5. Click on the Show Formula Bar check box. If it is selected, then the Formula Bar is displayed; not selected means it won't be displayed.
  6. Click on OK.

You can also use the Formula Bar option from the View tab of the ribbon. This option functions like a toggle—click on it once and the Formula Bar disappears; click again and it reappears.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (7558) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Controlling Display of the Formula Bar.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Using TC Fields for Notes

The TC field is normally used in constructing manual Tables of Contents. The way the field works, however, makes it a ...

Discover More

Printing a Worksheet List

Want a list of all the worksheets in your workbook? Here's a short, handy macro that will place all the worksheet names ...

Discover More

Controlling Formula Reference Jumping

When you select a cell, you typically do so to see what the cell contains to to make changes to the cell. How Excel ...

Discover More

Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!

More ExcelTips (ribbon)

Understanding Manual Calculation

When you make changes in a worksheet, Excel automatically recalculates everything that may be affected by that change. If ...

Discover More

Tab Key Jumps a Screen at a Time

Have you ever pressed the Tab key, expecting to move to the next cell in your worksheet, only to have Excel completely ...

Discover More

Enlarging the Formula Bar

The Formula bar is used to display the formula that appears in a cell. You may want to modify how the Formula bar is ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 2 + 4?

2023-09-17 10:02:14

J. Woolley

My Excel Toolbox includes the ToggleFormulaBar macro (Ctrl+T F B) to turn the formula bar off or on. The macro supports Undo (Ctrl+Z). Here is an abbreviated version:

Public Sub ToggleFormulaBar()
    Const myName As String = "ToggleFormulaBar"
    With Application
        .DisplayFormulaBar = (Not .DisplayFormulaBar)
        .OnUndo myName, (ThisWorkbook.Name + "!" + myName)
    End With
End Sub

Similar macros include ToggleRibbon, ToggleStatusBar, ToggleScrollBars, and ToggleFullScreen.
The WindowDressing macro will toggle several properties for the active worksheet or all worksheets. See my comment dated 2022-02-23 here: https://excelribbon.tips.net/T009308_Controlling_Where_You_Edit_Cell_Contents.html
See https://sites.google.com/view/MyExcelToolbox


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.