Move the first word to end in Excel and Google Sheets

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

A2 = data cell

Check below for a detailed explanation with pictures and how to use formulas in Excel and Google Sheets.

Move the first word to end in Excel

How to move the first word to end in Excel?

MOVE FIRST WORD TO END — EXCEL FORMULA AND EXAMPLE

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

  • suitable a cell containing two text string

Move the first word to end in Google Sheets

How to move the first word to end in Google Sheets?
Move the first word to end in Google Sheets

MOVE FIRST WORD TO END — GOOGLE SHEETS FORMULA AND EXAMPLE

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

  • suitable a cell containing two text string