问题 I am trying to get an excel spreadsheet that has the names Jane Doe and John Smith, go from that to Doe, Jane, and Smith, John. I can only find ways to go from lastName, firstName to firstName lastName, but none for the contrary. Thank you. 回答1: For formulas use: =MID(A1,FIND(" ",A1)+1,999) & ", " & LEFT(A1,FIND(" ",A1)-1) Now to the next question: What if there are more than just the first and last name? Use this: =MID(A1,FIND("}}}",SUBSTITUTE(A1," ","}}}",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))