View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Toppers Toppers is offline
external usenet poster
 
Posts: 4,339
Default Flipping the order of words in a column to a new column


=RIGHT(A1,LEN(A1)-FIND(" ",A1))&" "&LEFT(A1,FIND(" ",A1)-1)

"rachel" wrote:

If you have one column that reads Jane Doe can you easily reverse the order
to read Doe Jane by creating a formula?