How to Combine Columns in Excel Without Losing Data (2024)

  • Categories
  • Computers and Electronics
  • Software
  • Office
  • Spreadsheets
  • Microsoft Excel

Download Article

Explore this Article

methods

1Using Flash Fill

2Using the Ampersand Symbol

3Using the CONCAT Function

Other Sections

Video

Related Articles

References

Article Summary

Written byNicole Levine, MFA

Last Updated: January 24, 2024Fact Checked

Download Article

Do you want to merge two columns in Excel without losing data? There are three easy ways to combine columns in your spreadsheet—Flash Fill, the ampersand (&) symbol, and the CONCAT function. Unlike merging cells, these options preserve your data and allow you to separate values with spaces and commas. This wikiHow guide will teach you how to combine columns in Microsoft Excel.

Method 1

Method 1 of 3:

Using Flash Fill

Download Article

  1. 1

    Know when to use Flash Fill. Flash Fill is the fastest way to combine the values of two columns (such as columns of separated first and last names). You'll teach Flash Fill how to merge the data by typing the first merged cell yourself (e.g., FirstName LastName). Flash Fill will sense the pattern and fill out the rest of the column.[1]

    • The two columns you're combining must be next to each other to use Flash Fill.
    • Don't use Flash Fill if any of the following is true for your data (use the ampersand symbol or the CONCAT function instead):
      • The columns you want to combine aren’t consecutive (e.g., combining columns A and F).
      • You want to be able to make changes to the original columns and have those change automatically update in the merged column.
  2. 2

    Add a blank column next to the columns you want to combine. In this example, let's say column A contains first names, column B contains last names, and that we want column C to contain first and last names combined. If column C isn't blank right now, right click the C column header and select Insert from the menu.

    Advertisem*nt

  3. 3

    Type the full name into the first cell in column C. For example, if A1 contains Joe and B1 contains Williams, type Joe Williams into C1.

    • Flash Fill can detect all sorts of patterns. For example, if column A contains area codes and column B contains phone numbers, you could type the area code and phone number into column C.
    • You can even separate the contents of the columns with words or symbols, as long as you don't make the pattern too hard for Excel to understand. For example:
      • A1 contains the area code 212 and B1 contains 555-1212, you could type (212) 555-1212 into column C and Excel should sense the pattern.
  4. 4

    Press Enter or Return. This teaches Flash Fill the pattern.

  5. 5

    Start typing the next combined name into C2. As you type, you'll see that Excel suggest the next combination automatically.

    • For example, if A2 is Maria and B2 is Martinez, Excel will suggest Maria Martinez.
  6. 6

    Press Enter or Return. This automatically combines the remaining cells from columns A and B into a single merged column C. You don't even have to drag down a formula—the two columns are now merged into one.

    • If the column does not fill, press Control + E on the keyboard to activate Flash Fill manually.
    • You can safely delete the original two columns if you'd like. The new column doesn't contain any formulas, so you won't lose the merged data.
  7. Advertisem*nt

Method 2

Method 2 of 3:

Using the Ampersand Symbol

Download Article

  1. 1

    Click an empty cell near the columns you want to combine. This should be on the same row as the first row of data in the columns you're combining.

    • Using the Ampersand & is another easy way to combine two columns. You'll create a simple formula using & symbols into the first cell, and then apply your formula to the rest of the data to merge the whole column.
  2. 2

    Type an equals sign = into the blank cell. This begins the formula.

  3. 3

    Click the first cell in the first column you want to join. For example, if you're combining columns A and B, click A1. This adds the cell address to your formula.

  4. 4

    Type &" ". Place a single space between the two quotation marks. This tells the formula to add a space between the contents of the two columns.[2]

    • For example, if column A contains first names and column B contains last names, the " " ensures a space between the first and last names in the new column (e.g., "Joe Williams" instead of "JoeWilliams."
  5. 5

    Type another &. This time, don't add any quotes or spaces.

  6. 6

    Click the first cell in the second column you want to merge. Now you'll have a formula that looks something like this: =A1&" "&B1

    • If you'd rather there not be a space between the words in the merged column, the formula would eliminate the " " and the second ampersand like this: =A1&B1
    • You could also place a symbol, word, or phrase inside of the quotes if you want to insert something between the two joined cells.
  7. 7

    Press Enter or Return. You've now merged the contents of the two cells at the top of each column.

  8. 8

    Click and drag the formula down the column. This merges the rest of the two columns.

    • You can either click the cell and drag its bottom-right corner to the bottom of the columns, or double-click the square at the bottom-right corner of the cell to use autofill.
  9. 9

    Convert the merged column into plain text. Because you used a formula to merge the two columns, the new column is just formulas, not text. If you want to delete the original columns and just keep the merged column, you'll need to do this to avoid losing data:

    • Select all the combined data you've created. For example, C1:C30.
    • Press Control + C (PC) or Command + C (Mac) to copy it.
    • Right-click the first cell in the column you just copied.
    • Select Paste Special and choose Values.
  10. Advertisem*nt

Method 3

Method 3 of 3:

Using the CONCAT Function

Download Article

  1. 1

    Click an empty cell near the columns you want to combine. This should be on the same row as the first row of data in the columns you're combining.

    • CONCAT works just like using the ampersand symbol. Its advantage is that it's easy to include in other formulas and is handy when making calculations.[3] If you're just joining two columns by hand, using the ampersand is much easier.
  2. 2

    Type =CONCAT( into the blank cell. This begins the CONCAT formula.

    • If you're using a version of Excel from before 2019, use CONCATENATE instead of CONCAT.[4]
  3. 3

    Click the first cell in the first column you want to join. For example, if you're combining columns A and B, click A1. This adds the cell address to your formula, which should now look something like this: =CONCAT(A1.

  4. 4

    Type ," ",. Typing the first comma separates the first cell from " ", which adds a space between the two values. The second comma prepares you to select the second cell you're merging.

    • You should now have a formula that looks something like this: =CONCAT(A1," ",
  5. 5

    Click the first cell in the second column you want to merge and type a closed parenthesis ). Now you'll have a formula that looks something like this: =CONCAT(A1," ",B1).

    • You could also place a symbol, word, or phrase inside of the quotes if you want to insert something between the two joined cells.
    • Alternatively, if you want the merged text to appear without a space (e.g., JoeWilliams instead of Joe Williams), you could change the formula to =CONCAT(A1,B1).
  6. 6

    Press Enter or Return. This creates the formula and joins the two cells at the top of the columns.

  7. 7

    Click and drag the formula down the column. This merges the rest of the two columns.

    • You can either click the cell and drag its bottom-right corner to the bottom of the columns, or double-click the square at the bottom-right corner of the cell to use autofill.
  8. 8

    Convert the merged column into plain text. Because you used a formula to merge the two columns, the new column is just formulas, not text. If you want to delete the original columns and just keep the merged column, you'll need to do this to avoid losing data:

    • Select all the combined data you've created. For example, C1:C30.
    • Press Control + C (PC) or Command + C (Mac) to copy it.
    • Right-click the first cell in the column you just copied.
    • Select Paste Special and choose Values.
  9. Advertisem*nt

Expert Q&A

Ask a Question

200 characters left

Include your email address to get a message when this question is answered.

Submit

      Advertisem*nt

      Video

      Tips

      Submit a Tip

      All tip submissions are carefully reviewed before being published

      Submit

      Thanks for submitting a tip for review!

      You Might Also Like

      How toRecover a Corrupt Excel FileHow toUnprotect an Excel Sheet
      How to Use If‐Else in Microsoft Excel: Step-by-Step TutorialHow to Merge Cells in Microsoft Excel: A Quick GuideHow to Fix Ethernet Doesn't Have a Valid IP Configuration on WindowsHow toCreate a Mortgage Calculator With Microsoft ExcelHow toMake a Spreadsheet in ExcelHow toInsert Pictures in Excel That Automatically Size to Fit CellsHow to Unhide Multiple Rows in Microsoft ExcelHow toChange from Lowercase to Uppercase in ExcelHow toLink Sheets in ExcelHow toCreate a Graph in Excel3 Easy Ways to Convert Microsoft Excel Data to Word New to Excel? Here's Super Easy Tricks to Get You Started

      Advertisem*nt

      About This Article

      How to Combine Columns in Excel Without Losing Data (42)

      Written by:

      Nicole Levine, MFA

      wikiHow Technology Writer

      This article was co-authored by wikiHow staff writer, Nicole Levine, MFA. Nicole Levine is a Technology Writer and Editor for wikiHow. She has more than 20 years of experience creating technical documentation and leading support teams at major web hosting and software companies. Nicole also holds an MFA in Creative Writing from Portland State University and teaches composition, fiction-writing, and zine-making at various institutions. This article has been viewed 80,831 times.

      How helpful is this?

      Co-authors: 5

      Updated: January 24, 2024

      Views:80,831

      Categories: Featured Articles | Microsoft Excel

      Article SummaryX

      1.Add a blank column to the right of the two columns you're merging.
      2.Use Flash Fill to manually type the first combined cell and automatically fill the rest.
      3.Use the & or CONCAT function to create a formula that joins any two columns.

      Did this summary help you?

      In other languages

      Portuguese

      Dutch

      Spanish

      French

      Indonesian

      • Print
      • Send fan mail to authors

      Thanks to all authors for creating a page that has been read 80,831 times.

      Is this article up to date?

      Advertisem*nt

      How to Combine Columns in Excel Without Losing Data (2024)
      Top Articles
      Latest Posts
      Article information

      Author: Rev. Porsche Oberbrunner

      Last Updated:

      Views: 6144

      Rating: 4.2 / 5 (53 voted)

      Reviews: 92% of readers found this page helpful

      Author information

      Name: Rev. Porsche Oberbrunner

      Birthday: 1994-06-25

      Address: Suite 153 582 Lubowitz Walks, Port Alfredoborough, IN 72879-2838

      Phone: +128413562823324

      Job: IT Strategist

      Hobby: Video gaming, Basketball, Web surfing, Book restoration, Jogging, Shooting, Fishing

      Introduction: My name is Rev. Porsche Oberbrunner, I am a zany, graceful, talented, witty, determined, shiny, enchanting person who loves writing and wants to share my knowledge and understanding with you.