TEXTAFTER returns everything past a delimiter.
You are grouping signups by company. In C2, use TEXTAFTER to pull the part of the address in A2 that comes after the @.
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 | |
|---|---|---|---|
| 1 | Signed up | Domain | |
| 2 | ada@lovelace.io | 2026-03-04 | |
| 3 | bo@nilsson-group.com | 2026-03-05 | |
| 4 | cy@watanabe.co.jp | 2026-03-07 |
The classic version of this is =RIGHT(A2,LEN(A2)-FIND("@",A2)) — three functions and an off-by-one waiting to happen. TEXTAFTER says what it does.