Dec 01 2021 09:32 AM
I have a column that contains the Full Name, such as Matthew Groff. I want to change the Full Name column to read Groff, Matthew
I wrote the formula =MID(B8,FIND(" ",B8)+1,100)&”,” and this gives me Groff,
I wrote the formula =LEFT(B8,FIND(" ",B8)-1) and this gives me Matthew
I tried to combine them with =MID(B8,FIND(" ",B8)+1,100)&”,”&LEFT(B8,FIND(" ",B8)-1)
But this gives me a Name error that I can't figure out. I have attached my sample file.
Dec 01 2021 10:02 AM
Solution=MID(A3,FIND(" ",A3)+1,100)&";"&LEFT(A3,FIND(" ",A3)-1)
I changed &”,”& to &";"& and it works in my spreadsheet.
Dec 01 2021 11:47 AM
@marty007 The problem is your curly quotes. Look at the difference in the quotes around the comma (curly style) compared to the rest of the quotes:
Fix those quotes and you will be good.
Dec 01 2021 03:29 PM
Dec 02 2021 06:34 AM
Dec 02 2021 07:58 AM
Dec 01 2021 10:02 AM
Solution=MID(A3,FIND(" ",A3)+1,100)&";"&LEFT(A3,FIND(" ",A3)-1)
I changed &”,”& to &";"& and it works in my spreadsheet.