Replace specific text within a string using SUBSTITUTE.
Update email addresses in column A by replacing the old domain with a new domain. Display the updated emails in column B.
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 | |
|---|---|---|
| 1 | Old Email | New Email |
| 2 | john@oldcompany.com | |
| 3 | mary@oldcompany.com | |
| 4 | tom@oldcompany.com |
SUBSTITUTE replaces specific text within a string. Unlike REPLACE, it works with the actual text content rather than character positions.