Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
=TEXT(A2,"#,##0.00")Computed by a real spreadsheet engine on the sample data below.
| Number | Formatted |
| 1234.5 | 1,234.50 |
| 9876 | 9,876.00 |
| 450.75 | 450.75 |
| 10000 | 10,000.00 |
| 33.3 | 33.30 |
=TEXT(A2,"#,##0.00")→1235,##0.00
Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.
TEXT returns a text string, not a number. SUM cannot add text strings. Convert the values back with VALUE before summing, or avoid TEXT if you still need arithmetic.
Use the format code "0.00%" — but note you must pass the decimal value (e.g., 0.125), not the percentage (12.5), since TEXT will multiply by 100 for you.
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: