How to merge two columns in excel without losing data
Tutor 5 (54 Reviews)
Excel Tutor
Still stuck with a Excel question
Ask this expertAnswer
Merging two columns in Excel without losing data requires a method that combines the contents of both columns into a new column rather than using the standard Merge & Center tool. Using Merge & Center will overwrite all data except the top-left cell.
Method 1: Using the CONCATENATE or CONCAT Function
-
Insert a new column where you want the merged data to appear.
-
In the first cell of the new column, enter the formula:
-
For Excel versions before 2016:
=CONCATENATE(A1, " ", B1)
-
For Excel 2016 and later:
=CONCAT(A1, " ", B1)
-
-
Press Enter. The first row will show the combined data from columns A and B, separated by a space.
-
Drag the formula down to apply it to all rows.
-
Select the new column, copy it, and paste it as Values to remove formulas if needed:
-
Right-click → Paste Special → Values.
-
Method 2: Using the & Operator
-
Insert a new column for the merged data.
-
In the first cell, type:
=A1 & " " & B1
-
Press Enter and drag the formula down for all rows.
-
Copy and paste the results as Values to retain only the merged text.
Method 3: Using Flash Fill (Excel 2013 and Later)
-
Start typing the combined data manually in the first row of a new column.
-
Press Enter.
-
Start typing the next row; Excel will suggest the remaining combined data automatically.
-
Press Ctrl + E to accept the Flash Fill suggestions.
Notes
-
Using formulas ensures no data is lost from the original columns.
-
A space, comma, or other separator can be added between column contents inside the formula. For example:
=A1 & ", " & B1
-
The original columns remain intact for reference or further calculations.
This approach preserves all data and allows flexible formatting without overwriting any existing information.
Do you want me to show a method that merges without creating a new column and still keeps all data?
. Was this Helpful?Get Online Tutoring or Questions answered by Experts.
You can post a question for a tutor or set up a tutoring session
Answers · 1
Why are margins not working
Answers · 1
Why is page layout not working
Answers · 1
How to print repeated rows on top in excel
Answers · 1
How to print header on each page
Answers · 1