Question : extract email address from string in excel

Hi,

I have a csv file exported from Outllook where the email address is in the format:

John Doe ([email protected])

Is there a formula I can apply to extract the email address data between the parentheses?

Thanks.

Answer : extract email address from string in excel

Try this, assuming your email address is in A1:

=MID(A1,FIND("(",A1,1)+1,FIND(")",A1,1)-FIND("(",A1,1)-1)
Random Solutions  
 
programming4us programming4us