How to Find Formula Errors in Excel
A single #REF! or #DIV/0! can quietly poison every total that depends on it. Excel gives you several tools to find error values and understand why they happened, and a clean way to handle the ones you expect. Here is how to track them all down.
Know what each error value means
Excel errors are not random, each one points at a specific problem.
#DIV/0!divides by zero or by an empty cell.#REF!references a cell that was deleted or moved.#VALUE!does math on text or the wrong data type.#NAME?does not recognize a name or function spelling.#N/Ameans a lookup found no match.#NUM!is a numeric value that is invalid or too large.
Run Excel's built-in error checking
Excel can sweep a sheet for errors and explain each one in plain language.
- Go to the Formulas tab and, in the Formula Auditing group, click Error Checking.
- For each flagged cell, read the explanation and choose to edit, ignore, or show the calculation steps.
- Click Trace Error on a flagged cell to draw arrows to the precedents that feed it.
- To go cell by cell yourself, use Evaluate Formula in the same group to step through one operation at a time.
Find every error value at once
To select all errors on a sheet, press Ctrl+G for Go To, click Special, choose Formulas, then untick everything except Errors and click OK. Excel selects every error cell so you can review or color them in one pass. Tracking down the deepest source of an error is faster when you also display formulas with Ctrl plus the grave accent key.
Handle expected errors cleanly
Some errors are normal, such as a lookup that legitimately finds nothing. Wrap those formulas so they fail gracefully, for example =IFERROR(VLOOKUP(...), 0) or =IFERROR(A1/B1, ""). Just do not blanket-wrap everything, or you will hide real problems.
Wrap formulas in one click with ModelMint
Typing IFERROR around an existing formula by hand is fiddly, especially across a whole range. ModelMint Error Wrap selects your cells and rebuilds each formula inside an IFERROR with the fallback you choose, preserving the original logic. It is the tidy version of a job you would otherwise do one cell at a time.
Error Wrap
Wrap a whole range of formulas in IFERROR with the fallback you choose, in one click, without retyping the original logic.
Get ModelMint See how it worksFAQ
How do I select all cells with errors in Excel?
Press Ctrl+G to open Go To, click Special, choose Formulas, untick everything except Errors, and click OK. Excel selects every cell on the sheet that contains an error value so you can review them together.
What does #REF! mean in Excel?
A #REF! error means a formula points to a cell that no longer exists, usually because the referenced cell, row, column, or sheet was deleted. Use Trace Precedents or Evaluate Formula to find which reference broke, then repoint it.
Should I wrap every formula in IFERROR?
No. IFERROR is for errors you expect and want to handle gracefully, such as a lookup that may find no match. Wrapping everything hides genuine mistakes like broken references or bad math, so apply it deliberately.