How do I use LEFT in Excel?
Use LEFT when you want to extract characters from the left side of text. Enter Text, Number of characters in that order, then add optional arguments when needed.
Returns leftmost characters from text.
LEFT(text, [num_chars])text
RequiredEnter a text value (wrap with quotes when needed).
num_chars
OptionalEnter a numeric value.
Use LEFT to return the result with these settings (Text: B2 (cell B2 (Name in column B)), Number of characters: 3).
| # | 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)
=LEFT(B2, 3)Result
Tar
Use LEFT when you want to extract characters from the left side of text. Enter Text, Number of characters in that order, then add optional arguments when needed.
Use the "Start Function Practice" button to jump straight into LEFT drills.
The main arguments are Text, Number of characters. Start with the required ones, then add optional arguments if needed.