techiemoore
New Member
- Joined
- Oct 8, 2020
- Messages
- 9
- Office Version
- 365
- Platform
- Windows
Okay, i have no idea what I'm doing.
After some toying, i have
in order to extract email addresses from stuff like "Bhatia, Tulikaa <Tulikaa.Bhatia@domain.com>"
My problem is that i need to also remove the angled brackets.
I do not know how to SUBSTITUTE and then SUBSTITUTE something else.
Any help would be greatly appreciated.
After some toying, i have
Excel Formula:
=IFERROR(TRIM(RIGHT(SUBSTITUTE(LEFT(A4,FIND(" ",A4&" ",FIND("@",A4))-1)," ",REPT(" ",LEN(A4))),LEN(A4)))," ")
My problem is that i need to also remove the angled brackets.
I do not know how to SUBSTITUTE and then SUBSTITUTE something else.
Any help would be greatly appreciated.