How do I use TEXT in Excel?
Use TEXT when you want to format numbers or dates as display text. Enter Value, Format text in that order, then add optional arguments when needed.
Formats value as text using a format code.
TEXT(value, format_text)value
RequiredSpecify a single cell reference.
format_text
RequiredEnter a text value (wrap with quotes when needed).
Use TEXT to convert cell D2 (Payment Amount in column D) to text using the format "#,##0".
| # | AEmployee ID | BName | CEmail | DPayment Amount | EAmount Text |
|---|---|---|---|---|---|
| 2 | E001 | Taro Tanaka | t.tanaka@example.com | 1200 | 1200 |
| 3 | E002 | Hanako Suzuki | h.suzuki@example.com | 980 | 980 |
| 4 | E003 | Ken Sato | k.sato@example.com | 2450 | 2450 |
| 5 | E004 | Aya Takahashi | a.takahashi@example.com | 3000 | 3000 |
| 6 | |||||
| 7 | |||||
| 8 |
How to Use (Formula)
=TEXT(D2, "#,##0")Result
1,200
Use TEXT when you want to format numbers or dates as display text. Enter Value, Format text in that order, then add optional arguments when needed.
Use the "Start Function Practice" button to jump straight into TEXT drills.
The main arguments are Value, Format text. Enter them in order.