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

Iterating Circular References

Does your data require that you perform calculations using circular references? If so, then you'll want to be aware of ...

Discover More

Non-Printing Hyperlinks

Karen is having problems getting hyperlinks to print in a document on her home computer. There are only a limited number ...

Discover More

Converting Imported Information to Numeric Values

If the information you import into Excel is treated as text by the program, you may want to convert it to numeric values. ...

Discover More

Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!

More ExcelTips (ribbon)

Excel Stops Recalculating

Virtually everyone depends on Excel to automatically recalculate a workbook as edits are made. If it isn't done ...

Discover More

Tab Key Won't Move from Cell to Cell in Locked Worksheet

Normally the Tab key can be used to move from one cell to another in Excel. If this cell movement doesn't work for you, ...

Discover More

Understanding Manual Calculation

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

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 three more than 1?

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.