Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. 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.
Written by Allen Wyatt (last updated September 16, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021
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:
Figure 1. The Advanced options of the Excel Options dialog box.
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, Excel in Microsoft 365, and 2021. You can find a version of this tip for the older menu interface of Excel here: Controlling Display of the Formula Bar.
Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!
Don't want to always type the decimal point as you enter information in a worksheet? If you are entering information that ...
Discover MoreWant to load a particular add-in for use with a specific worksheet? Here's a quick way to do it using macros.
Discover MoreWhen you right-click a cell, does it seem that the Context menu is missing an item or two? Here's how to get those items ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
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
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments