#VALUE!
Google Spreadsheet App
Severity: MinorWhat Does This Error Mean?
The #VALUE! error in Google Sheets means a formula is trying to do math on a cell that contains text instead of a number. For example, adding a cell that says "N/A" to a number will cause #VALUE! because you cannot add words. You need to find the non-numeric cell and either correct its content or update your formula to handle it.
Affected Models
- Google Sheets Web
- Google Sheets iOS App
- Google Sheets Android App
- Google Workspace
- All Google accounts
Common Causes
- A cell in the formula range contains text, a space, or a label instead of a number
- A date cell is formatted as text and cannot be used in date calculations
- The formula is using an operator like * or / on a cell that has a word in it
- Data pasted from another source included invisible characters or spaces
- A cell appears empty but contains a space character, which counts as text
How to Fix It
-
Click the cell showing #VALUE! and look at the formula to identify which cell range it is using.
Hover over the #VALUE! cell — Google Sheets often shows a tooltip identifying the problem.
-
Check each cell in the formula range for any text, spaces, or labels instead of numbers.
A single cell with the word 'Total' or even a single space can break the entire formula.
-
Use the ISNUMBER function to check a suspect cell — type =ISNUMBER(A1) in an empty cell; it returns TRUE if it is a number.
This is the fastest way to confirm which cells contain text masquerading as numbers.
-
Wrap your formula with IFERROR to suppress the error display while you fix the data — for example, =IFERROR(SUM(A1:A10), 0).
IFERROR shows a fallback value instead of #VALUE!, so the sheet stays usable while you investigate.
-
If the data was pasted from another source, select the affected cells, go to Format > Number > Number to force numeric formatting.
Pasted data often carries hidden text formatting that prevents Sheets from reading values as numbers.
When to Call a Professional
The #VALUE! error is a data or formula issue you can resolve yourself. If you are dealing with a very large dataset and cannot find the problem cell, Google Workspace support is available at support.google.com/docs.
Frequently Asked Questions
Why does #VALUE! only appear in some rows and not others?
Only the rows where the formula encounters a text cell will show the error. Rows where all cells are valid numbers will calculate correctly. Look at the rows showing the error and check what is different in those cells.
Can a blank cell cause #VALUE!?
A truly empty cell usually does not cause #VALUE! — most math formulas treat empty cells as zero. However, a cell that looks empty but contains a space character counts as text and will trigger the error.
Does IFERROR fix the underlying problem?
No — IFERROR hides the error display but does not fix the data. Use it as a temporary measure to keep your sheet functional while you find and correct the non-numeric cells.