Numbers stored as text won’t sum, sort, or chart — they sit left-aligned with a little green triangle. VALUE (or a quick ×1) converts them back to real numbers Excel can compute with.
=A2 * 1 or =A2 + 0 forces numeric conversion.
The example
Text amounts converted so they can be summed.
| A | B | |
|---|---|---|
| 1 | Text | Number |
| 2 | '1,250 | 1250 |
| 3 | '42 | 42 |
| 4 | SUM | 1292 |
The formula
Force the text into a real number:
How it works
Excel needs a numeric type, not numeric-looking text:
VALUE(A2)parses the text and returns a number, respecting your regional thousands and decimal separators.- A math operation that doesn’t change the value —
A2*1,A2+0, or--A2— also coerces text to a number. - For text using a different region’s separators,
NUMBERVALUE(A2, ".", ",")lets you specify the decimal and group characters explicitly. - No formula? Select the range, click the warning triangle, and choose Convert to Number — or use Text-to-Columns and finish on a numeric column.
Fastest bulk fix: copy any empty cell, select the text-numbers, then Paste Special → Add. Adding zero converts the whole range to real numbers in place — no helper column.
Try it: interactive demo
Type a number with commas; see the converted value.
Variations
Math coercion
No VALUE needed:
Double-negative
A common pro shortcut:
Foreign separators
Specify decimal/group chars:
Pitfalls & errors
VALUE errors on real text. If the cell isn’t actually a number (“N/A”, “TBD”), VALUE returns #VALUE!. Wrap with IFERROR if mixed content is possible.
Leading apostrophes hide. A cell starting with ' is forced to text; VALUE or Convert to Number removes the effect.
Regional separators matter. “1.250” means 1250 in some locales and 1.25 in others. Use NUMBERVALUE to be explicit.
Practice workbook
Frequently asked questions
How do I convert text to numbers in Excel?
How do I convert a whole column of text-numbers at once?
Why does VALUE give a #VALUE! error?
Stop fighting formulas. Learn them in a day.
This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class