#VALUE!Supported on: Microsoft Excel® & Google Sheets™
How to Fix the #VALUE! Error in Excel & Google Sheets
The #VALUE! error occurs in Excel and Google Sheets when a formula receives an unexpected data type, such as attempting mathematical operations on cells containing text strings or incompatible array dimensions.
Formula Syntax Comparison
Broken Formula
=A2 * B2 (where A2 contains "$120.00 USD" formatted as raw string)
Corrected Formula
=VALUE(SUBSTITUTE(SUBSTITUTE(A2, "$", ""), " USD", "")) * B2
Manual Step-by-Step Fix
1
Step 1
Use the VALUE() function or TRIM() to strip hidden spaces from imported text strings.
2
Step 2
Replace direct mathematical operators (+, -) with aggregate functions like SUM(), which ignore text cells automatically.
3
Step 3
Check data types with ISNUMBER(cell) or ISTEXT(cell) to pinpoint the rogue text cell.