Answers for "excel split column on first space"

0

excel split column on first space

In the column for the first half:
=LEFT(A1,FIND(" ",A1)-1)

In the column for the remainder:
=RIGHT(A1,LEN(A1)-FIND(" ",A1))
Posted by: Guest on October-20-2021

Browse Popular Code Answers by Language