Extract Name from Email Address

remusbv8

New Member
Joined
Jan 10, 2022
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hello everyone,

I am trying to extract the full name from the email address but I am stuck with middle names.

Example: remusovidiu.baisan@gmail.com I need to be turned into Remus Ovidiu Baisan.

So far my formula managed to bring: Remusovidiu Baisan

Formula used: =SUBSTITUTE(PROPER(LEFT([@Email],FIND("@",[@Email])-1)),"."," ")

Any tips?
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
This a little shorter, but returning a middle name without any identifier will be much more difficult
Excel Formula:
=PROPER(LEFT(A1,FIND("@",A1,1)-1))
 
Upvote 0
Thanks for the answers!

I was more curious if I can find a solution to extract the middle name too.
 
Upvote 0
How are we going to know where the middle name actually starts or a middle name even exists ??
 
Upvote 0
I was more curious if I can find a solution to extract the middle name too.
Without more information, that is not possible (as Michael has already alluded to). For example, without further information
albarobert.baisan could be "Alba Robert Baisan" or "Albaro Bert Baisan" or something else again.

If somewhere in your workbook you had a list of name details like below then it would be more likely that the names could be separated

remusbv8.xlsm
ABC
1FirstMiddleLast
2RemusOvidiuBaisan
3AndreiAldea
4AlbaroBertBaisan
Sheet2
 
Upvote 0

Forum statistics

Threads
1,214,534
Messages
6,120,080
Members
448,943
Latest member
sharmarick

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top