Syntax
| Parameter | Description |
|---|---|
| text | Parameter of the VALUE function. |
Examples
Convert text number to real number
=VALUE(A2)
Convert text date to date value
=VALUE("2024-03-15")
Fix imported data for calculations
=SUM(VALUE(A2), VALUE(A3), VALUE(A4))
Common Errors
The text cannot be interpreted as a number. Remove non-numeric characters (currency symbols, commas in some locales, letters) before using VALUE.
The cell contains invisible characters like non-breaking spaces. Use CLEAN(TRIM(A1)) before VALUE.
Tips
Instead of VALUE(A1), you can use A1*1 or A1+0 to force a text-to-number conversion. It is shorter but less explicit.
To convert a whole column from text to numbers: add a helper column with =VALUE(A2), paste as values, then delete the original.
Use ISNUMBER(A1) to test if a cell is already a number. If FALSE, the value might need VALUE() conversion.
Try VALUE in Viztab
Import your data and use VALUE with 370+ other formulas. No signup required.
Open Viztab