How to combine 2 columns in excel with a space
Tutor 5 (54 Reviews)
Excel Tutor
Still stuck with a Excel question
Ask this expertAnswer
Combining two columns in Excel means merging the text from each column into one cell while inserting a space between the values.
How to Combine 2 Columns in Excel With a Space
To combine 2 columns in Excel with a space, use a text formula that joins the values from both columns and inserts a single space between them.
Using the Ampersand (&) Operator
-
Select the cell where the combined result should appear.
-
Enter the formula:
=A1 & " " & B1 -
Press Enter to display the combined text.
-
Drag the fill handle down to apply the formula to additional rows.
-
Convert the results to static text when needed by copying the results and using Paste Values.
Windows and Mac use the same steps for this method.
Using the CONCAT Function
-
Select the output cell.
-
Enter the formula:
=CONCAT(A1, " ", B1) -
Press Enter and fill down.
-
Use Paste Values when a static result is required.
The CONCAT function works the same on Windows and Mac.
Using the TEXTJOIN Function
TEXTJOIN handles many columns at once.
-
Select the result cell.
-
Enter the formula:
=TEXTJOIN(" ", TRUE, A1, B1) -
Press Enter and fill down.
Windows and Mac follow identical steps for TEXTJOIN.
How to Convert Combined Results to Permanent Text
To convert formula results into static text:
-
Select the combined cells.
-
Press Ctrl + C on Windows or Cmd + C on Mac.
-
Right-click the selection.
-
Choose Paste Values.
Which Method Should You Use?
-
The & operator gives maximum control and works in all Excel versions.
-
The CONCAT function replaces the legacy CONCATENATE function.
-
The TEXTJOIN function supports large combinations and ignores empty cells when TRUE is set for the second argument.
Common Errors and Fixes
-
Numbers turning into dates: Excel formats automatically. Change the cell format to Text before combining.
-
Extra spaces appearing: Remove unnecessary spaces from source cells before combining.
-
Showing the formula instead of the result: Change the cell format to General, then re-enter the formula.
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