How do I reverse information in a cell example last name, first n
Say you have your name and surname in A2, then in B2 enter this formula
=MID(A2,FIND(" ",A2)+1,LEN(A2)-FIND(" ",A2))&" "&LEFT(A2,FIND(" ",A2)-1)
"elrusty" wrote:
Need to reverse information in a cell example last name, first name
|