How to extract username from email addresses in Excel?
As we all know, email address contains two parts which are user name and domain name. But, in certain case, you may need to extract user name from the email address in your worksheet. Are there any good ways for you to get the user name from the email address?
Extract full user name from email address
Extract first and last user name separately from email address
Extract full user name from email address
To extract the full user name from the email address, you can use the mixed Left and Find function.
1. In a blank cell next to your email address, C2, for example, enter this formula: =LEFT(A2,FIND("@",A2)-1),(A2 contains the email address that you want to extract its user name, you can change it as you want), see screenshot:
2. Then drag the fill handle down to your range cells that you want to contain this formula, and all the user names in the cells have been extracted as follows:
Extract first and last user name separately from email address
If you want to extract the first name and last name into separate columns, the following formulas can do you a favor.
To get the first name: =LEFT(LEFT(A2,FIND(".",A2)-1),FIND("@",A2)-1)
To get the last name: =LEFT(RIGHT(A2,LEN(A2)-FIND(".",A2)),FIND("@",RIGHT(A2,LEN(A2)-FIND(".",A2)))-1)
Please enter the above formulas into blank cells as you need, and drag the fill handle down to the range that you want to apply the formulas, and then you will see all the first name and last names have been returned into two columns separately. See screenshot:
Notes:
1. If there isn’t last name within the user name, the formula will return an error value.
2. "." in the above formula indicates the separator between first name and last name, you can change "." to meet your need.
3. If there is no separator between first name and last name of the email address, this formula cannot work.
Related article:
How to extract domains from multiple email addresses in Excel?
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office / Excel 2007-2021 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!







