FormulaCraft

Fix the #VALUE! error

Excel & Google Sheets

What #VALUE! means

#VALUE! means a formula got the wrong kind of input — most often text where it expected a number. Spreadsheets cannot add a word to a number, so they flag the cell.

Common causes

Example fix

Broken
=A2+B2+C2
Fixed
=SUM(A2:C2)

SUM ignores any text cell in the range, while the + operator errors on it.

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

How to fix it

  1. 1Look for any cell in the formula that holds text instead of a number — a stray label, unit, or space.
  2. 2Convert text-numbers to real numbers with VALUE(), or by multiplying by 1.
  3. 3Use SUM instead of + when adding a range, because SUM ignores text cells while + does not.
  4. 4Clean invisible characters with TRIM and CLEAN if values were pasted from the web.
  5. 5Check that any date used in math is a real date (right-aligned by default), not text (left-aligned).

Stop hunting errors by hand.

Upload your spreadsheet and the Auditor flags every #VALUE! and broken formula at once — or paste this one formula and get the fix explained.

Frequently asked

Why does + give #VALUE! but SUM does not?

The + operator fails if any operand is text. SUM is built to skip text and blank cells, so it tolerates a stray label in the range.

How do I tell if a number is stored as text?

Text-numbers align to the left and often show a small green triangle in Excel. Real numbers align to the right. Multiply by 1 or use VALUE() to convert.

Related formulas

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: