Day(s)

:

Hour(s)

:

Minute(s)

:

Second(s)

How to Extract the First Name From an Email Address

Example

=PROPER(LEFT(B3,FIND(“.”,B3)-1))

Generic Formula

=PROPER(LEFT(Email,FIND(“.”,Email)-1))

Email – This is the email address which we want to extract the first name from. It is assumed to be of the form firstname.lastname@company.com.

What It Does

This formula will return the first name with proper capitalization from an email address of the form firstname.lastname@company.com.

How It Works

FIND(“.”,Email) will find the location of the first period in the email going from the left to right direction in the email address. This is the location of the period that separates the first name from the last name. In our example FIND(“.”,”jim.smith@breadmakers.com”) will return 4 since the period is the 4th character in the email address.

We then use LEFT(Email,PeriodLocation-1) to get the first PeriodLocation-1 left most characters from our email address. We subtract 1 from the character location of the first period since we only want the characters before the period. In our example this is LEFT(“jim.smith@breadmakers.com”,3) which will return jim all in lower case since our email address was all in lower case.

We then use PROPER(FirstName) to return the first name in its proper case with the first character capitalized. In our example PROPER(“jim”) will return Jim as the final result.

About the Author

John MacDougall

John MacDougall

John is a Microsoft MVP and qualified actuary with over 15 years of experience. He has worked in a variety of industries, including insurance, ad tech, and most recently Power Platform consulting. He is a keen problem solver and has a passion for using technology to make businesses more efficient.

Subscribe

Subscribe for awesome Microsoft Excel videos 😃

John MacDougall

I’m John, and my goal is to help you Excel!

You’ll find a ton of awesome tips, tricks, tutorials, and templates here to help you save time and effort in your work.

Related Posts

Comments

0 Comments

Get the Latest Microsoft Excel Tips

Follow Us

Follow us to stay up to date with the latest in Microsoft Excel!

Subscribe for awesome Microsoft Excel videos 😃