← Error directory

#VALUE! Error in Excel

#VALUE! means the formula received the wrong data type or argument shape — text where a number was required, or mismatched ranges.

Common causes

Numbers stored as text

=VALUE(A2)
=A2*1
=--A2
=VALUE(TRIM(SUBSTITUTE(A2,CHAR(160),"")))

Bulk: Data → Text to Columns → Finish, or Paste Special → Multiply by 1.

Fix workflow

  1. Formulas → Evaluate Formula
  2. Check ISTEXT / ISNUMBER on inputs
  3. Coerce text numbers; align range sizes
  4. Use IFERROR only after the root type issue is fixed
Related: #VALUE! hub · SUMIFS #VALUE! · Formula as text