Finding text between 2 @ signs
Micki wrote:
I have the folling in a cell:
SD09071707444004362@Micki Caldwell@20090716115600
I want to remove the text between the 2 @ signs. Thank you
=LEFT(A1,FIND("@",A1)-1)&
MID(A1,FIND("@",A1,FIND("@",A1)+1)+1,LEN(A1))
|