Forum Discussion
mjizy01
Sep 06, 2023Copper Contributor
fomula to use
- Sep 06, 2023
the second column looks like
=MID(A1, SEARCH("@",A1)-1, LEN(A1)-(SEARCH("@",A1)-1) )
or with Excel 365
=LET(in,A1:A100, at, SEARCH("@",in)-1, MID(in, at, LEN(in)-at)
and third column
=LEFT(A1,SEARCH("@",A1)-1)
HansVogelaar
Sep 06, 2023MVP
And your question is?
mjizy01
Sep 06, 2023Copper Contributor
can you help me
- mtarlerSep 06, 2023Silver Contributor
the second column looks like
=MID(A1, SEARCH("@",A1)-1, LEN(A1)-(SEARCH("@",A1)-1) )
or with Excel 365
=LET(in,A1:A100, at, SEARCH("@",in)-1, MID(in, at, LEN(in)-at)
and third column
=LEFT(A1,SEARCH("@",A1)-1)- mjizy01Sep 06, 2023Copper Contributor"=MID(A1,SEARCH("@",A1)-1,LEN(A1)-SEARCH("@",A1)-1)"
=MID(A1,SEARCH("@",A1)-1,LEN(A1)-SEARCH("@",A1)+1)
this is the right one. thanks for helping out- mtarlerSep 06, 2023Silver Contributor
oops, a minus of a minus is a +. good catch. I'll edit the above to prevent confusion.