Skip to main content

How to swap or switch text around within one cell in Excel?

In many cases, you may need to swap text around in a single cell for some purposes. For example, a cell contains a name Smith John, you need to swap the texts inside the cell to change the name to John Smith. This article lists some methods to solve this problem.

Swap or switch text around within one cell by using formula
Swap or switch text around within one cell by using VBA code
Easily swap or switch text around within one cell by Kutools for Excel


Swap or switch text around within one cell by using formula

The below formula can help you to swap texts around within one cell in Excel. Please do as follows.

1. Select a blank cell to locate the swapped data, enter formula into the Formula Bar, and then press the Enter key. See screenshot:

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

2. Select the result cell, then drag the Fill Handle down to get the rest results as below screenshot shown.

Then you can see the first name and last name are swapped in specified cells.

Note: This method can only swap two texts within one cell which are separated by space.


Easily swap or switch text around within one cell in Excel:

The Reverse Text utility of Kutools for Excel can help you to easily swap text around within one cell by certain separator in Excel as the below demo shown.
Download and try it now! (30-day free trail)


Swap or switch text around within one cell by using VBA code

As above example shown, you can also run the following VBA script to swap or switch text around within one cell.

1. Press the Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Applications window.

2. In the Microsoft Visual Basic for Applications window, click Insert > Module. Then copy and paste the below VBA code into the Module window.

VBA code: Swap or switch text around within one cell

Sub res()
    Dim xRg As Range, yRg As Range
    Dim LastRow As Long, i As Long
    Dim strTxt As String, strFs As String
    Dim strLs As String, N As Integer
    On Error Resume Next
    Set xRg = Application.InputBox(Prompt:="Range Selection:", _
                                    Title:="Kutools for excel", Type:=8)
    For Each yRg In xRg
        On Error Resume Next
        strTxt = yRg.Value
        Trim (strTxt)
        N = InStr(strTxt, " ")
        strLs = Left(strTxt, N - 1)
        strFs = Right(strTxt, Len(strTxt) - N)
        yRg.Value = strFs & " " & strLs
    Next
End Sub

3. Press the F5 key to run the code. In the popping up Kutools for Excel dialog box, please select the range with data you need to swap, and then click the OK button. See screenshot:

Then you can see texts in the specified name cells are swapped immediately.

Note: This code can also swap two words within one cell which are separated by space correctly.


Easily swap or switch text around within one cell by Kutools for Excel

This section recommends the Reverse Text Order utility of Kutools for Excel to help you easily solve this problem. Please do as follows.

Before applying Kutools for Excel, please download and install it firstly.

1. Select the range contains the texts you need to swap, then click Kutools > Text > Reverse Text Order. See screenshot:

2. In the Reverse Text dialog box, specify a separator you will swap the texts based on in the Separator section. In this case, I select the Space option. And then click the OK button.

Then you can see data in selected cells are swapped in same cell by specified separator immediately.

  If you want to have a free trial (30-day) of this utility, please click to download it, and then go to apply the operation according above steps.


Demo: Easily swap or switch text around within one cell by Kutools for Excel

Related article:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions…
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (2)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Very good..
This comment was minimized by the moderator on the site
Thank you for the VBA code.
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
Rate this post:
0   Characters
Suggested Locations