I am using a combination of excel functions(MID, FIND, LEN) to convert cell A1 from FirstName LastName to LastName,FirstName.
A1_______________________C1
FirstName LastName LastName,FirstName
Formula in C1
=MID(A1&","&A1,FIND(" ",A1)+1,LEN(A1))
What I need is a space before the FirstName
Any suggestions for revising the function to obtain this result? Many Thanks.
Jim
A1_______________________C1
FirstName LastName LastName,FirstName
Formula in C1
=MID(A1&","&A1,FIND(" ",A1)+1,LEN(A1))
What I need is a space before the FirstName
Any suggestions for revising the function to obtain this result? Many Thanks.
Jim