Inverse of the concatenate function
Solved
ali
-
Jiji -
Jiji -
Hello,
to assemble several strings into one, we use the concatenate function.
And if now we want to do the opposite, is there an Excel function that addresses that? Thank you.
to assemble several strings into one, we use the concatenate function.
And if now we want to do the opposite, is there an Excel function that addresses that? Thank you.
Configuration: Windows XP Internet Explorer 6.0
You can also use the FIND, LEFT, and RIGHT functions
if text is in A1
in B1 =LEFT(A1;FIND(" ";A1;1))
in C1 =RIGHT(A1;LEN(A1)-FIND(" ";A1;1))
A1 : Last name first name
B1 : Last name
C1 : First name