How to merge two columns of data in excel
Tutor 5 (68 Reviews)
Excel Tutor
Still stuck with a Excel question
Ask this expertAnswer
To merge two columns of data in Excel, you have several methods depending on whether you want to keep the original columns or combine them into a new column.
Method 1: Using the CONCATENATE Function or CONCAT Function
-
Select the cell where you want the merged result to appear.
-
Enter the formula:
-
For Excel versions before 2016:
=CONCATENATE(A1, B1)
-
For Excel 2016 and later:
=CONCAT(A1, B1)
-
-
Press Enter.
-
Drag the fill handle down to apply the formula to other rows.
Variation with a Separator:
To add a space, comma, or other separator between values:
=CONCAT(A1, " ", B1)
This merges the content of column A and column B with a space in between.
Method 2: Using the "&" Operator
-
Select the cell for the merged output.
-
Enter the formula:
=A1 & B1
-
Press Enter.
-
Drag the formula down for all rows.
With Separator:
=A1 & " " & B1
This inserts a space between the merged values.
Method 3: Using Flash Fill
-
Type the desired merged value manually in the first row of a new column. For example, if A1 is "John" and B1 is "Doe", type "John Doe".
-
Press Enter.
-
Select the next cell below, start typing the merged format, or press Ctrl + E (Windows) / Command + E (Mac).
-
Excel automatically fills the rest of the column with merged values based on the pattern.
Method 4: Using Power Query (For Large Data Sets)
-
Select your data and go to Data → Get & Transform → From Table/Range.
-
In Power Query Editor, select the columns you want to merge.
-
Right-click and choose Merge Columns.
-
Choose a separator (space, comma, etc.) or no separator.
-
Click Close & Load to return merged data to Excel.
Tips
-
Formulas keep the original columns intact. Copy and paste values as text to remove formulas.
-
For very large datasets, Flash Fill is faster, but Power Query is more robust for automated merging.
-
Ensure there are no leading or trailing spaces in cells, as these may affect the final result.
Get Online Tutoring or Questions answered by Experts.
You can post a question for a tutor or set up a tutoring session
Answers · 1
How to merge excel files into one file
Answers · 1
How to merge excel files into one
Answers · 1
How to mail merge from excel to email
Answers · 1
How to mail merge from excel to pdf
Answers · 1