How to get email id from a cell which contain more records?
For e.g. Cell A1 has the following value:
I want to copy rockstar@xyz.com from the cell A1 to B1.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should use
RIGHT,LEFTandFINDfunctions. This works for me:=LEFT(RIGHT(A1,LEN(A1)-FIND(" ",A1,1)),FIND(" ",RIGHT(A1,LEN(A1)-FIND(" ",A1,1)),1))I used the space character to cut the string but it will only work if the email address is in the middle position.