I am trying to extract data in an email address.
All the email addresses are formatted as [email protected]
Can someone please help me with a function that will extract the "last" from the email?
Note: the first and last names will always be different lengths of characters, so i think i need something that will say something like extract after the "." and before the "@"
Best Answers
-
Try something like this...
=MID([Email Address]@row, FIND(".", [Email Address]@row) + 1, FIND("@", [Email Address]@row) - (FIND(".", [Email Address]@row) + 1))
-
Yes. Try something like this:
=UPPER(MID([Email Address]@row, FIND(".", [Email Address]@row) + 1, 1)) + MID([Email Address]@row, FIND(".", [Email Address]@row) + 2, FIND("@", [Email Address]@row) - (FIND(".", [Email Address]@row) + 2))
Answers
-
Try something like this...
=MID([Email Address]@row, FIND(".", [Email Address]@row) + 1, FIND("@", [Email Address]@row) - (FIND(".", [Email Address]@row) + 1))
-
Thanks, this worked!! Do you know if there that I can Capitalize the first letter in the Last name... in conjunction with the function you provided?
-
Yes. Try something like this:
=UPPER(MID([Email Address]@row, FIND(".", [Email Address]@row) + 1, 1)) + MID([Email Address]@row, FIND(".", [Email Address]@row) + 2, FIND("@", [Email Address]@row) - (FIND(".", [Email Address]@row) + 2))
-
Thank you so much, this has worked wonderfully! I appreciate your assistance!
-
Help Article Resources
Categories
Check out the Formula Handbook template!