How to get an email from a cell which contains more records?
For example, A1 cell has the following value:
8242663603,"nickname","mail@gmail.com"
I only need an email from this record in cell B1:
mail@gmail.com
and email always comes last
How to get an email from a cell which contains more records?
For example, A1 cell has the following value:
8242663603,"nickname","mail@gmail.com"
I only need an email from this record in cell B1:
mail@gmail.com
and email always comes last
Assuming that the formatting is always the same as your example:
=MID($A1,FIND(""",""",$A1)+3,LEN($A1)-FIND(""",""",$A1)-3)
This selects the text between ","
and the end of the text minus 1 character.
Assuming there is always at least 1 " before the emailaddress:
=MID(A1,FIND("~",SUBSTITUTE(A1,"""","~",LEN(A1)-LEN(SUBSTITUTE(A1,"""",""))-1))+1,LEN(A1)-FIND("~",SUBSTITUTE(A1,"""","~",LEN(A1)-LEN(SUBSTITUTE(A1,"""",""))-1))-1)