How to Display All Formulas in Excel

If you just need to display all formulas in excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: press Ctrl+` (the grave accent, left of 1) to toggle every formula on the sheet into view — or use Formulas ▸ Formula Auditing ▸ Show Formulas.

On this page7
ƒxFormula ExplainerLive
IF(SUMIFS(C2:C100, A2:A100, "West") > 1000, "On target", "Below")Tests a condition: returns the 2nd argument if true, the 3rd if false.
SUMIFS(C2:C100, A2:A100, "West") > 1000The left side is greater than the right side.
SUMIFS(C2:C100, A2:A100, "West")Adds the cells that match every listed condition.
C2:C100A reference to cells in your sheet.
A2:A100A reference to cells in your sheet.
"West"A fixed value typed directly into the formula.
1000A fixed value typed directly into the formula.
"On target"A fixed value typed directly into the formula.
"Below"A fixed value typed directly into the formula.
Runs entirely in your browser — your data never leaves this page.
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

Show Formulas is a per-worksheet view switch: every cell displays its formula text instead of its calculated result, and columns widen to fit. It is the fastest way to audit a sheet, and it is also the accident that produces the most common "Excel is broken" question — someone hits Ctrl+` and every cell suddenly shows =SUM(...). If only *some* cells show their formula, that is a different problem: those cells are formatted as Text, or the entry starts with a leading space or apostrophe. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. For “display all formulas in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected formula change, and only then apply the same setup to the full sheet. When this is a ribbon command, the selection matters more than the button: confirm the range, apply the command, then spot-check the output before saving. That is what makes a calculation you can defend to a CFO or an auditor useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

B2 displays =A2*1.2 instead of 24. Press Ctrl+` — if every other formula cell also flips to text, Show Formulas was on and one keystroke fixes it. If only B2 is affected, select it, set Home ▸ Number Format to General, then press F2 and Enter to re-enter the formula. To hide formulas from other people rather than from yourself, select the cells ▸ Ctrl+1 ▸ Protection ▸ tick Hidden, then Review ▸ Protect Sheet. It is both the standard way to audit somebody else's workbook and the answer to the most-asked panic question in Excel, and the two cases are told apart by whether one cell or the whole sheet is affected. When the result is not what you expected, undo straight away rather than repairing it by hand — undo restores the sheet exactly, while manual fixes tend to leave small inconsistencies behind that surface later.

In Google Sheets

This is a command rather than a formula, so there is no syntax to carry over. Google Sheets arranges its commands in menus across the top instead of a ribbon, names some of them differently and does not have every Excel command — look for the equivalent in the Sheets menus or its help before assuming the steps match. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. Treat “display all formulas in excel” as a routine rather than a one-off. Once you know which setting or command controls it, the same few steps handle every workbook where it comes up in Excel, and you can explain them to a colleague in a sentence.

Common mistakes

  • Assuming the file is corrupt when a stray Ctrl+` is the entire cause.
  • Reformatting a Text-formatted cell to General and expecting it to recalculate on its own — it needs re-entering with F2 then Enter.
  • Ticking Hidden in Format Cells and stopping there; nothing is hidden until the sheet is protected.
  • Confusing this with Formulas ▸ Calculation Options ▸ Manual, which leaves stale results rather than showing formula text.

Frequently asked questions

How do I show formulas in Excel?

Press Ctrl+` (grave accent, left of the 1 key), or use Formulas ▸ Formula Auditing ▸ Show Formulas. Press it again to go back to results.

Why is Excel showing the formula instead of the result?

Either Show Formulas is on for the whole sheet — press Ctrl+` — or that individual cell is formatted as Text, or the entry begins with an apostrophe or a space. Set the format to General and re-enter with F2 and Enter.

How do I hide formulas from other users?

Select the cells, press Ctrl+1 ▸ Protection ▸ tick Hidden, then Review ▸ Protect Sheet. The formula bar stays empty for those cells while the results still show.

Can I print the formulas?

Yes — switch Show Formulas on and print normally. The printout reflects whatever the view is showing.