Pull the part after the @ out of an email address.
Copy this formula
=MID(A2, FIND("@", A2)+1, LEN(A2))FIND locates the @ symbol, MID starts one character after it, and LEN as the length grabs the rest of the string. The result is the domain, e.g. example.com.
Returns everything after the @.
Get the name part
=LEFT(A2, FIND("@", A2)-1)Returns the username before the @.
Wrap in IFERROR to return blank: =IFERROR(MID(A2, FIND("@",A2)+1, 99), "").
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.