Flip the First & Last Names and Add a Comma Between

Last Updated: December 02, 2023
puneet-gogia-excel-champs

- Written by Puneet

To flip the names (First and Last) into last and first names in Excel, you need to use a combination of MID, LEN, and SEARCH functions. In this tutorial, we will learn to write a formula for this.

flip-first-and-last-name

Excel Formula to Swap First and Last Names

You can use the following steps to write this formula:

  1. First, you need to use the SEARCH function to find the space that you have between both first and last names.
    formula-to-swap-first-and-last-name
  2. After that, add one to the number returned by the SEARCH.
    add-one-to-search-function
  3. Next, you need to use the LEN function to get the count of total characters (first and last name). And add 1 into it also.
    len-function-to-get-count
  4. Now, enter the MID function, and in the first argument, enter the A1 cell (where you have the name) twice by combining it with a comma and space.
    mid-function-in-first-argument
  5. From here, in the second and third arguments of the MID, enter the SEARCH function and LEN function (which we have written in the earlier steps) respectively.
    enter-search-in-second-and-third-argument-of-mid
  6. In the end, hit enter to get the result.
    enter-to-get-result
=MID(A1&", "&A1,SEARCH(" ",A1)+1,LEN(A1)+1)

How Does This Formula Works

To understand this formula, you need to split it into three parts. The main function is the MID function and we have three arguments in the mid function to define, and that’s why you need to split this formula into three parts to understand it.

how-mid-and-search-formula-worked

In the FIRST PART, we have the text argument of the MID. And in this argument, we have combined the first and the last names twice using a comma and a space.

first-part-has-text-argument

In the SECOND PART, you have the SEARCH function that refers to cell A1 where you have the names (first and last) and look for the space in it, and then add 1 in it. This way you get the starting position of the last name from the cell.

second-part-has-search-function

In the THIRD PART, you have the LEN function that counts the total number of characters from the original names (first and last) and adds 1 to it.

third-part-has-len-function

In the end, the MID function gets the last name from the first value, and the first name from the second value to give you the result of swapping the first name and the last name into the last and first name.

Get the Excel File