I need to change a list of names in my spreadsheet: John Smith to Smith J
Is there a single formula I can use to do this?
I know to change the first name to an initial I can use
=LEFT(A1,1)&RIGHT(A1,LEN(A1)-FIND(" ",A1)+1)
and to reverse the order I can use
=MID(A1&""&A1,FIND("",A1)+1,LEN(A1))
But how to combine these 2 formulas? Or use another one that's better?
Is there a single formula I can use to do this?
I know to change the first name to an initial I can use
=LEFT(A1,1)&RIGHT(A1,LEN(A1)-FIND(" ",A1)+1)
and to reverse the order I can use
=MID(A1&""&A1,FIND("",A1)+1,LEN(A1))
But how to combine these 2 formulas? Or use another one that's better?