Excel Formulas Won’t Calculate | Quick Fix Playbook

When formulas stop updating in Excel, switch to Automatic calculation and fix any text-formatted numbers.

Nothing derails a spreadsheet like results that won’t refresh. The good news: most stalls trace back to a few settings, data-entry quirks, or a stuck calculation chain. This playbook gives you quick checks, clear fixes, and prevention steps so you can get values updating again without breaking your model.

Why Sheets Stop Updating

Three broad culprits explain nearly every stall. First, the workbook is set to Manual calculation, so Excel only recomputes when you press a key. Next, the sheet is showing formulas instead of results, which makes you think nothing is happening. Last, the cells feeding your math are stored as text, so functions don’t evaluate the way you expect.

Quick Diagnosis Matrix

Run these fast checks before deep fixes.

Symptom Likely Cause Fast Check
Numbers don’t change after edits Manual calculation is on Formulas > Calculation Options > Automatic
Cells show text like “=SUM(A1:A3)” Show Formulas toggled Press Ctrl+` or Formulas > Show Formulas
Math ignores some entries Values stored as text Green indicator; Home > Number box says “Text”
Result stays the same until a force recalc Broken dependency chain Try Ctrl+Alt+F9 or Ctrl+Alt+Shift+F9
New totals spill a #SPILL! or don’t expand Blocked dynamic arrays Clear cells in the spill range and retry
Warning about circular refs Looping formula needs iteration File > Options > Formulas > Iterative
Only specific tabs feel “stuck” Sheet-level oddities Try Shift+F9 on that sheet

Fast Checks Within 60 Seconds

Set Calculation Back To Automatic

On the Formulas tab, open Calculation Options and pick Automatic. That flips the workbook from manual mode to live updates. If you run data tables, “Automatic except for data tables” may be the sweet spot. For the full rundown on modes, hotkeys, and rebuilds, see Microsoft’s guide on recalculation and iteration.

Toggle Off Show Formulas

If the grid displays equation text instead of values, press Ctrl+` to swap back to results. You can also click Formulas > Show Formulas. Microsoft documents both paths under Display or hide formulas.

Convert Numbers Stored As Text

Text masquerading as numbers blocks math. The telltales are left-aligned digits, a green corner triangle, or an entry starting with an apostrophe. Use any of these quick fixes:

  • Home > Number group > change “Text” to “General.”
  • Use the warning icon > Convert to Number.
  • Paste Special multiply by 1 to coerce values (a standard trick noted in Microsoft’s page on text-formatted numbers).
  • Use =VALUE(A1) in a helper column, then paste values.

Ten Fixes That Solve Nearly Every Case

1. Switch Back To Automatic Calculation

Large models often get switched to Manual to save time during edits. That’s fine during build-out, but it must be set back to Automatic for daily work. Path: Formulas > Calculation Options > Automatic. If the setting won’t stick, close other workbooks that force Manual, then set it again in a clean session and save.

2. Force A Fresh Recalc

Press F9 to recalc all open workbooks, or Shift+F9 to recalc the active sheet. If results still look stale, press Ctrl+Alt+F9 to recalc all formulas, or Ctrl+Alt+Shift+F9 to rebuild the dependency tree and then recalc. These keystrokes are called out in Microsoft’s recalculation reference noted earlier.

3. Turn Off Show Formulas

When Show Formulas is on, every cell shows the formula text, which makes it seem like nothing’s updating. Press Ctrl+` to switch back, or use Formulas > Show Formulas. If you prefer the visual cue while auditing, toggle it only as needed.

4. Convert Values Out Of Text

Digits stored as text stop SUM, AVERAGE, and lookups from behaving. Convert them with the warning icon, with a quick multiply by 1 via Paste Special, or with =VALUE(). Scan headers and imported columns where CSVs or APIs often tag numbers as text.

5. Clear Leading Apostrophes And Rogue Spaces

A leading single quote forces text. Extra spaces block matches in lookups and joins. Use Find & Replace for a single quote (type ’ directly in Find), TRIM to cut extra spaces, CLEAN to strip non-printables, and TEXTAFTER/TEXTBEFORE to split fixed patterns. If the grid shows a left-aligned ID that won’t sum, this is usually the cause.

6. Resolve Circular References Or Enable Iteration

A formula that points back to itself creates a loop. Excel can handle loops if you allow a set number of passes. Path: File > Options > Formulas > Enable iterative calculation. Set a sensible maximum iterations and a small maximum change, then test. If you didn’t intend a loop, use Formulas > Error Checking > Circular References to jump to the offenders and refactor.

7. Rebuild The Calculation Chain

Workbooks with many links can lose track of dependencies. Press Ctrl+Alt+Shift+F9 to rebuild the chain and then recalc. If a sheet springs back to life after this, save and reopen to lock in the repaired tree.

8. Unblock Dynamic Arrays And Structured References

Functions like SORT, FILTER, and UNIQUE spill results across a range. If a cell blocks that range, you’ll see #SPILL! or a stubby output. Clear the range, move the formula, or convert the obstruction into an empty space. When working with Tables, keep column names consistent and avoid shadowing a column header with a named range of the same text.

9. Fix Cross-Workbook Links And External Data

Broken links keep results stale. Open Data > Edit Links to repair or break links. If you rely on Power Query or connections, refresh them and confirm credentials. For files on network drives or cloud storage, ensure the path is solid and the source workbook is accessible.

10. Triage Add-Ins, Macros, And File Glitches

Faulty add-ins or event-based macros can interfere with recalc. Launch in Safe Mode (hold Ctrl while starting Excel on Windows) to bypass add-ins, then test your sheet. If the sheet works there, disable add-ins one by one. For strange behavior that persists, copy the used sheets into a new workbook: Home > Format > Move or Copy Sheet > new file, then save.

Deep Fixes With Clear Steps

Set Workbook Calculation Modes The Right Way

  1. Open the workbook that should run live.
  2. Go to Formulas > Calculation Options > Automatic.
  3. Press F9 once to sync everything, then save.
  4. Close other files that enforce Manual, then reopen your model alone to confirm the mode held.

Clean Text-Formatted Columns At Scale

  1. Select a blank cell and type 1.
  2. Copy that cell.
  3. Select the suspect range.
  4. Home > Paste > Paste Special > Multiply > OK.
  5. Reapply number formats as needed (dates, currency, percentages).

Unstick A Sheet That Shows Only Equations

  1. Press Ctrl+` once.
  2. If that doesn’t flip, click Formulas > Show Formulas to toggle off.
  3. Scan the ribbon for a highlighted Show Formulas button to confirm the mode.

Taking A Calculation-First Approach (Keyword Variant Inside)

This section uses a natural variant of the topic to help searchers who type it differently. When formulas refuse to update in a workbook, think in layers: calculation mode, display mode, data types, and dependency health. By checking those layers in order, you fix most stalls without touching the rest of the model.

Recalc Keys And When To Use Them

Keep these shortcuts handy during audits and model builds.

Shortcut Scope Best Use
F9 All open workbooks Regular refresh when Manual is set
Shift+F9 Active sheet only Speedy tests on a single tab
Ctrl+Alt+F9 All formulas in all workbooks Force fresh math across files
Ctrl+Alt+Shift+F9 Dependency rebuild + full recalc Fix a broken chain or stale links
Ctrl+` Toggle formula display Audit equations, then return to values

Trouble Spots That Mimic A Calculation Bug

Mixed References And Typos

Absolute vs. relative references can freeze parts of a range. Use F4 to cycle anchors while editing. Check sheet names quoted with apostrophes when spaces or digits appear in the tab name, and be sure the exclamation mark sits in the right spot.

Spilled Ranges Overwritten By Manual Entries

If a spilled function fed a chart and someone typed inside the spill grid, the chart stops updating. Clear those cells and restore the spill. A small arrow in the top-left of the formula cell points to the intended spill area.

Table Columns Renamed Mid-Build

Structured references update automatically, yet shadowing a header with a named range of the same text can cause surprises. Keep names distinct and avoid blanks at the top row of a Table.

Prevention Checklist

  • Keep a small banner on your template’s front sheet stating the chosen calculation mode.
  • Use a one-click macro or Quick Access Toolbar button to toggle Manual/Automatic during heavy edits.
  • Import data as proper types; set Power Query types before loading.
  • Lock spill ranges with clear border cues so teammates know not to type there.
  • Audit links monthly; break dead links and store source files in stable paths.
  • Document any loops that rely on iteration and store the limits in the same sheet.
  • Save after a forced rebuild so the dependency graph persists.

When You Still See Stale Results

If none of the steps move the needle, start Excel in Safe Mode to rule out add-ins, then test on a copy of the file. Try copying only the used sheets into a fresh workbook to drop hidden corruption. As a last resort, export the data to a new file, rebuild the formulas in a clean structure, and reattach queries and charts.

Bottom Line For Reliable Updates

Treat updates as a chain: mode, display, data type, links, and dependencies. Set the mode to Automatic, keep values as numbers, and rebuild the chain when results feel off. With that routine, your models will calculate on cue and your analysis stays trustworthy.