Parsing Names in Excel

M

Michael

The solution was

=MID(A1,FIND("(",A1)+1,FIND(")",A1)-FIND("(",A1)-1)

Jason Lepack provided the answer.

Thanks
Michael
 
K

KC Rippstein

This does not look like it removed the word "exchange." from the email
addresses as requested. This would be better suited if "exchange." always
shows up the way it does in your example.

=MID(A1,FIND("(",A1)+1,FIND("@",A1)+1-FIND("(",A1)-1)&MID(A1,FIND("@",A1)+10,FIND(")",A1)-FIND("@",A1)-10)

-KC
 
Top