Formulas, functions & operators
What is the formula bar in Excel? Definition and what it shows
The formula bar is the strip above the grid that shows what a selected cell actually contains, rather than the value the cell displays. It is also an editing surface: clicking into it lets you change the contents of the selected cell directly, which is how most long formulas get read and rewritten.
Last reviewed August 30, 2026 · 6 min read
On this page
- What it shows that the cell does not
- Expanding it
- Missing, hidden, and hidden formulas
- The Google Sheets formula bar
- How Formula Foundry handles this
- FAQ
- Why is my formula bar missing in Excel?
- How do I expand the formula bar to see a long formula?
- What is the difference between the formula bar and Show Formulas?
Exceljet places it precisely — "the Formula Bar in Excel sits directly above the worksheet area, to the right of the Name Box" — and Ablebits adds the marking to look for: "a special toolbar at the top of the Excel worksheet window, labeled with function symbol (fx)."
What it shows that the cell does not
The grid shows results; the formula bar shows inputs. Select a cell displaying 1,240 and the bar tells you whether that is a number somebody typed or =SUM(Orders[Amount]). Select a cell displaying #VALUE! and the bar shows the formula that produced it, which is where any investigation of Formula errors starts.
The difference is not only formulas. A cell showing 12% may hold 0.1234, and text that looks tidy may have a trailing space. The bar is the one place in the interface that routinely shows the stored value rather than the formatted one, which makes "select the cell and read the bar" the first move in almost every spreadsheet diagnosis.
It activates on demand: Ablebits notes that "the formula bar gets activated as soon as you type an equal sign in any cell or click anywhere within the bar." Editing in the bar and editing in the cell reach the same content — the bar wins for anything long, because, as Ablebits puts it, it lets you "view it entirely without overlaying the contents of the neighbor cells", while in-cell editing spills sideways across whatever is next to it.
Expanding it
One line is the default, and one line is not enough. Exceljet's description of the bar includes the escape hatch — it "can be expanded to show multiple lines for the same formula" — and the shortcut is worth committing to memory: Ctrl + Shift + U on Windows, Control + Shift + U on a Mac. It "will toggle the formula bar between a collapsed and uncollapsed state", and pressing it again restores the default size.
The mouse route works too. Ablebits: "hover the mouse near the bottom of the formula bar until you see the up-and-down white arrow", then "click that arrow and drag down until the bar gets big enough to accommodate the entire formula."
This matters more than it used to. Line breaks inside a formula — entered with Alt + Enter — are the standard way to make a long LET or nested IF readable, and Exceljet notes the shortcut is exactly for the case where "you have a very long formula, or have added line breaks to a formula for readability". A multi-line formula in a one-line bar looks truncated, which is how many people conclude their formula is broken when it is only cropped.
Missing, hidden, and hidden formulas
Three different things get called "the formula bar is gone", and they have three different fixes.
| Symptom | What happened | Fix |
|---|---|---|
| No bar at all above the grid | The bar is switched off | View tab → Show group → tick Formula Bar |
| The grid shows formulas instead of results | Show Formulas is on | Formulas → Show Formulas, or Ctrl + ` |
| A cell's formula never appears in the bar | The cell is hidden and protected | Review → Unprotect Sheet, then clear Format Cells Hidden |
The first is the common one. Ablebits: "if the formula bar is missing in your Excel, most likely it's because you've accidentally turned off the Formula Bar option on the ribbon", recoverable from the View tab or from File → Options → Advanced → Display → Show Formula bar.
The third is deliberate and worth knowing about, because it is how a workbook author stops you reading their work. Microsoft documents it as "prevent a formula from displaying in the formula bar": tick Hidden on the Protection tab of Format Cells, then protect the sheet. The note attached to it is the part that surprises people — "this procedure also prevents the cells that contain the formula from being edited." Removing sheet protection reverses both.
Show Formulas is the opposite move: instead of one formula in the bar, every formula on the sheet appears in its own cell. Microsoft's toggle is "Formulas → Show Formulas", or Ctrl + `. It is the fastest way to spot the hardcoded number sitting in a column of formulas, and it belongs to a wider practice covered under Formula auditing.
The Google Sheets formula bar
Sheets has the same strip in the same place, and resizes rather than toggles: "to make the formula bar bigger or smaller, click the bottom of it, then drag it up or down", with keyboard equivalents of Ctrl + Up and Ctrl + Down on a PC, Ctrl + Option + Up and Ctrl + Option + Down on a Mac.
Two Sheets behaviours have no direct Excel counterpart and change how the bar is used. A function help box "will be visible throughout the editing process to provide you with a definition of the function and its syntax, as well as an example for reference" — documentation attached to the bar rather than in a browser tab. And formula highlighting colours the referenced cells on the grid: "when you reference other cells in a formula, those cells will be highlighted in contrasting colors", both while typing and when you click into a finished formula.
How Formula Foundry handles this
Formula Foundry's editor is an alternative to the formula bar as a place to write, not a replacement for it. The add-on opens a multi-line editor in the sidebar of Google Sheets and Excel, with syntax highlighting, auto-indentation, matching-paren highlighting, find and replace, and a dark mode — the sort of surface a 300-character nested formula needs and a one-line strip cannot give it. Functions, ranges, constants and named references each get their own colour, so structure is visible instead of counted.
It does not touch the native bar. Formula Foundry does not hide it, resize it, or change what it displays; Ctrl + Shift + U still does what it always did, and a colleague opening the same file without the add-on sees exactly the formula bar they expect. The sidebar is a second window onto the same cell contents, and what you insert from it lands in the cell like anything else you type.
Two further pieces fit the same job. The visual builder renders a formula's call tree as a form, with every argument named and nested calls shown as nested groups. And the AI assistant explains an inherited formula step by step in plain English, sending only the formula text and only when you click. What none of it does is calculate: the add-on parses, formats, translates and explains, so the values behind a formula still come from the spreadsheet. The features overview shows the editor, the builder and the assistant in both applications.
FAQ
Why is my formula bar missing in Excel?
Almost always because the option was switched off. Tick View tab → Show group → Formula Bar to bring it back, or use File → Options → Advanced and select Show Formula bar under the Display section. If the bar is present but a particular cell's formula never appears in it, that is a different setting: the cell has been marked Hidden on the Protection tab of Format Cells and the sheet has been protected, which also blocks editing until the sheet is unprotected.
How do I expand the formula bar to see a long formula?
Press Ctrl + Shift + U, which toggles the bar between its collapsed one-line state and an expanded multi-line one; press it again to collapse it. You can also hover over the bottom edge of the bar until a two-headed arrow appears and drag it downward to any height you want. In Google Sheets the drag works the same way, with Ctrl + Up and Ctrl + Down as the keyboard equivalent.
What is the difference between the formula bar and Show Formulas?
The formula bar shows the contents of one selected cell; Show Formulas turns the whole sheet inside out, displaying every formula in its own cell instead of the result. Use the bar to inspect the cell you are working on, and Show Formulas — Ctrl + ` , or Formulas → Show Formulas — to scan a sheet for cells that are not formulas at all, such as a typed-over number in a calculated column.