Answers for "cut a string at the first space excel"

1

cut to first space in excel

RIGHT(A2,LEN(A2)-FIND("@",SUBSTITUTE(A2,"/","@",LEN(A2)-LEN(SUBSTITUTE(A2,"/",""))),1))
Posted by: Guest on May-31-2021
1

cut to first space in excel

=RIGHT(B2,FIND(" ",B2)-1) for rtl "LEFT" for ltr
Posted by: Guest on May-31-2021

Code answers related to "cut a string at the first space excel"

Browse Popular Code Answers by Language