Broken reference
Cause: A cell, row, or column your formula referenced has been deleted. Or an INDIRECT/OFFSET reference points outside the valid range.
The classic #ERROR family — hash-prefixed error codes that appear in cells when a formula can't compute. Cryptic on purpose, but each has a specific cause and specific fix.
Every Excel user meets these errors. #REF! when you delete a column that a formula depended on. #NAME? when you misspell a function. #VALUE! when you try to multiply text by a number. #DIV/0! when a divisor turns out to be zero. Below is every hash error with the top cause and the copy-paste fix.
Cause: A cell, row, or column your formula referenced has been deleted. Or an INDIRECT/OFFSET reference points outside the valid range.
Cause: Excel doesn't recognize a name in your formula. Usually a misspelled function (VLOKUP), a text value without quotes (=IF(A1=paid...)), or a named range that doesn't exist.
Cause: A formula received the wrong type of input. Math on text (="abc"*2), date operation on non-date, or a text argument where a number was expected.
Cause: A formula tried to divide by zero or by an empty cell (which Excel treats as zero). Also appears in AVERAGE of empty range or MOD by zero.
=IFERROR(A1/B1, 0) — or add explicit check for zero.Cause: A lookup function couldn't find the requested value. VLOOKUP, XLOOKUP, MATCH failing to match. Or a formula explicitly returned NA().
=IFNA(VLOOKUP(...), "Not found"). Or check for exact-match issues.Cause: A number is out of range for the calculation. Common with SQRT of negative, LOG of zero, IRR that can't converge, dates before 1900, or numbers too big/small.
Cause: Two ranges specified with a space between them (the intersection operator) don't intersect. Usually a typo — a space where you meant a comma or colon.
=SUM(A1:A10 B1:B10) → =SUM(A1:A10, B1:B10).Cause: A formula refers back to itself, directly or through a chain of other formulas. Excel can't compute because the answer depends on itself.
=IFERROR(A1/B1, 0) catches all errors with one fallbackCell width. Excel uses short codes so the error fits inside the cell. Hovering shows a one-line tooltip, and clicking the yellow warning icon shows a slightly longer explanation. For the full diagnosis, you need dedicated pages like these.
#N/A means "the value doesn't exist here — I looked but didn't find it". #REF! means "the location I was looking at doesn't exist anymore — it was deleted". Different problems, different fixes.
Column too narrow to display a number or date. Widen the column, or right-click → Format Cells to change the number format. Not really an error — just a display issue.
Yes — Formulas → Error Checking → Error Checking Options lets you disable various green-triangle warnings. But wrapping errors with IFERROR at the formula level is much better practice than suppressing them globally.
By search volume: #REF! and #N/A are tied for most-searched. In finance workbooks, #DIV/0! is the most common. In lookup-heavy workbooks, #N/A dominates. Every Excel user hits all seven eventually.
The Add-in's Error Explainer identifies which error you have, why it happened, and gives you the exact fix formula — right inside Excel.
Get the Add-in →