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...