Written by Allen Wyatt (last updated January 10, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365
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, 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.
Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!
What happens when you press Enter in a cell depends on how you have Excel configured. Here's the way you can control the ...
Discover MoreSome people like zero values displayed; others do not. Excel allows you to easily turn the display on or off for a single ...
Discover MoreWhen you view a worksheet in Print Preview, Excel shows you the position of page breaks once you return to the worksheet. ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-10-28 18:00:25
Randolph Brock
The formula bar is visible, but the contents of the formula bar does not change when moving the cursor!!!!
2020-01-16 10:33:41
Peter Atherton
I just read the post by JM regarding Column & Row headers not showing. The following macro will toggle their display.
Sub ToggleHeadings()
ActiveWindow.DisplayHeadings = Not ActiveWindow.DisplayHeadings
End Sub
Similarly, in Word the following show or hides the ruler
Sub toggleRuler()
ActiveWindow.ActivePane.DisplayRulers = Not _
ActiveWindow.ActivePane.DisplayRulers
End Sub
Just a thought if word saves macros in the normal template, why are we not given the option with Excel? It woud be handy for hiding parts of the display in the active window.
2020-01-16 00:33:10
Morris Manning
Maddie, hanging issues can have many causes. A general overview can be found at https://support.office.com/en-us/article/Excel-not-responding-hangs-freezes-or-stops-working-37E7D3C9-9E84-40BF-A805-4CA6853A1FF4. The list is daunting but a bit of sleuthing can narrow down options and point a diagnostic direction. For example, is problem limited to Excel? Is it limited to a single workbook or all workbooks? Are there macros running in the workbook(s)? What exactly are you doing immediately before and at the time the problem occurs, e.g.: entering data, selecting ribbon controls, running a macro, etc. More information would be helpful.
2020-01-14 10:52:59
Maddi
Problem:
Excel appears to lock-up
Symptoms: times
All at the same time -
Not able to continue entering info into cells
unable to copy & paste & "formula bar" appears
Sometimes, but not every time, I'm able to close the file & when I reopen it again works
Other times I have to wait until it allows me to close file
I'd really appreciate you advise on how to resolve this, it occurs freq.
Thanks
Maddi
2020-01-09 09:50:17
Paul Rockey
"Controlling Display of the Formula Bar" Allen, thank you so much, such a quick and easy fix, and illustrated perfectly! I'm surprised that this isn't a default, it's such a necessary thing.
2019-08-03 00:44:49
Reni Daniel
Thank You so much!
2019-07-05 09:06:14
Sarah
Thanks!
2018-08-17 11:34:06
Morris Manning
JM, A web search suggests several approaches.
If the formula bar is missing entirely, go to View >Show and make sure Formula Bar is checked.
It is possible there may be a copy of Excel running in the background but not visible. Exit Excel. Go to Windows Task Manager > Processes and shut down any instance of Excel that may be running.
If none of the above works, try repairing Excel by running a repair on your office programs: Control Panel > Programs & Features.
Hope this helps.
2018-08-16 16:36:02
JM
I lost the pane that shows the cell column letter and row number, which is left to the formula bar. How do I activate it again? Is there a reason why it has gone missing? Thanks in advance.
2018-05-19 15:52:01
Mandora
To automate via VBA for a particular workbook, add the following code in the ThisWorkbook module:
Private Sub Workbook_Activate()
Application.DisplayFormulaBar = False 'Formula Bar hidden when workbook is opened.
End Sub
Private Sub Workbook_Deactivate()
Application.DisplayFormulaBar = True 'Formula Bar unhidden when workbook is closed.
End Sub
To make available on an adhoc basis, add the following macro to a PERSONAL .XLSB module and call with a button on the Quick Access Toolbar or assign to shortcut keys assignment.
Sub Toggle_FormulaBar()
If Application.DisplayFormulaBar = True Then
Application.DisplayFormulaBar = False
Else
Application.DisplayFormulaBar = True
End If
End Sub
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 © 2023 Sharon Parq Associates, Inc.
Comments