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.
Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!
By default, Excel shows row numbers at the left side of your program window. If you cannot see the row numbers, there are ...
Discover MoreEnter a value into a cell and "poof!" it is automatically divided by 100. What's going on, and how can you fix it so that ...
Discover MoreWhat happens when you press Enter in a cell depends on how you have Excel configured. Here's the way you can control the ...
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