How do I use RIGHT in Excel?
Use RIGHT when you want to extract characters from the right side of text. Enter Text, Number of characters in that order, then add optional arguments when needed.
Returns rightmost characters from text.
RIGHT(text, [num_chars])text
RequiredEnter a text value (wrap with quotes when needed).
num_chars
OptionalEnter a numeric value.
Use RIGHT 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)
=RIGHT(B2, 3)Result
aka
Use RIGHT when you want to extract characters from the right 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 RIGHT drills.
The main arguments are Text, Number of characters. Start with the required ones, then add optional arguments if needed.