Extract the Domain from an Email Address
You have a column of email addresses and need just the part after the @ — to group signups by company, spot personal Gmail addresses in a B2B list, or count contacts per organization.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
FIND locates the position of the @ sign, and MID returns everything starting one character after it — the +1 skips the @ itself, and 100 just means "take up to 100 characters," which is longer than any real domain. Because every valid email has exactly one @, this is one of the most reliable text extractions there is, and it works identically in Excel and Google Sheets. In Excel 365 you can also write =TEXTAFTER(A2,"@") for the same result.
When to use it
Use this to segment a signup list by company, filter out free-mail domains like gmail.com from a lead list, or build a domain column you can point COUNTIF at to see contacts per organization.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08