Getting different errors in Excel? Error messages can be frustrating but they're also extremely useful — imagine if Excel made a mistake and didn't tell you about it.
#NA means "no value is available." This error appears when something can't be found — most often in VLOOKUP and MATCH functions when a referenced value doesn't exist in the lookup range.

#VALUE means something's wrong with your function. It's a broad error, so check which formula you're using first.

This happens when the formula references a cell that isn't a number — even if it looks like one. Extra characters ("11,33") or embedded spaces ("12 345") can stop Excel recognising it as a number. Check with ISNUMBER: TRUE means Excel sees it as a number, FALSE means it doesn't.
#REF appears when a referenced cell or range is no longer valid — usually because it was deleted. There's a difference between deleting cells (which shifts adjacent cells) and clearing cells (which only removes content).
#NUM! appears when there's a problem with a number in the formula, usually because the function can't find an answer.



A few common causes:


Check for a missing space, comma, or colon in the formula:
| Formula | Problem |
|---|---|
| =SUM(D7 D16) | Colon missing between D7 and D16 |
| =SUM(C7:C16 D7:D16) | Comma missing between the two ranges |
| =D7+D8 D9 | Space between D8 and D9 needs a math operator |
Circular referencing happens when a formula's calculation includes the cell it's in — creating an infinite loop, e.g. A3 = A1 + A2 + A3. Excel usually warns you immediately.

If you dismiss the warning without reading it, the formula returns 0 instead of an obvious error. Check via Formula tab > Error Checking > Circular References.

Self-explanatory: this happens when you divide a number by zero. Dividing A by B splits A into B parts — and you can never split something into zero parts.
#SPILL appears when a formula's result needs multiple cells, but some of those cells already contain data — common with VLOOKUP or MATCH using a range as the lookup value.

If cells in the spill range already contain data, Excel can't place the results there:

Fix: clear the data in those cells so nothing blocks the result.
This appears when the column isn't wide enough to display the value. Widen the column and the error disappears.
Has this page answered your question? If not, let us know what's missing and we'll add it.
Get in touch