Extract parts of text using LEFT, RIGHT, and MID functions.
You have phone numbers in a specific format. Extract the area code, exchange, and number parts using text functions.
Solve without hints for +5 XP
This is the grid you start with. Cell references in the task — B6, C2 — point at the row numbers and column letters below.
| A | B | C | D | |
|---|---|---|---|---|
| 1 | Phone Number | Area Code | Exchange | Number |
| 2 | (555) 123-4567 | |||
| 3 | (888) 987-6543 | |||
| 4 | (777) 456-7890 |
LEFT, RIGHT, and MID functions extract portions of text strings. They are essential for parsing formatted data like phone numbers, IDs, or codes.