Google Sheets
0 Guide

How To Combine Two Columns in Google Sheets

This is an Arcade

Learn how to combine two columns in Google Sheets using formulas like & or TEXTJOIN. Perfect for merging names, data fields, or labels with separators.

1. Open your Google Sheet and locate the two columns you want to combine
In Google Sheets, identify the two columns you’d like to merge—like first and last names in columns A and B.

2. Select an empty column where the combined data will go
Click into the first empty cell in a new column (e.g., C2) to start merging the values from columns A and B.

3. Use the & operator to combine text
Type =A2 & " " & B2 to join the contents of A2 and B2 with a space in between. Adjust the formula for different separators (e.g., comma, dash).

4. Or use TEXTJOIN for more flexible merging
Use =TEXTJOIN(" ", TRUE, A2, B2) to combine cells with a chosen delimiter. TEXTJOIN automatically skips any empty cells.

5. Copy the formula down the column
Drag the fill handle down from the corner of the cell to apply the formula to the entire column and combine all row pairs.

6. (Optional) Convert formulas to static values
If needed, copy the combined column, then use Edit > Paste special > Paste values only to remove the formulas and keep just the text.

Google Sheets
0 Guide

Ready to create quick,
interactive product demos?

Sign up
– it's free
{ "@context": "https://schema.org", "@type": "HowTo", "name": "How to Combine Two Columns in Google Sheets", "description": "Learn how to combine two columns in Google Sheets using formulas like & or TEXTJOIN. Perfect for merging names, data fields, or labels with separators.", "step": [ { "@type": "HowToStep", "name": "Open your Google Sheet and locate the two columns you want to combine", "text": "In Google Sheets, identify the two columns you’d like to merge—like first and last names in columns A and B." }, { "@type": "HowToStep", "name": "Select an empty column where the combined data will go", "text": "Click into the first empty cell in a new column (e.g., C2) to start merging the values from columns A and B." }, { "@type": "HowToStep", "name": "Use the & operator to combine text", "text": "Type =A2 & \" \" & B2 to join the contents of A2 and B2 with a space in between. Adjust the formula for different separators (e.g., comma, dash)." }, { "@type": "HowToStep", "name": "Or use TEXTJOIN for more flexible merging", "text": "Use =TEXTJOIN(\" \", TRUE, A2, B2) to combine cells with a chosen delimiter. TEXTJOIN automatically skips any empty cells." }, { "@type": "HowToStep", "name": "Copy the formula down the column", "text": "Drag the fill handle down from the corner of the cell to apply the formula to the entire column and combine all row pairs." }, { "@type": "HowToStep", "name": "Convert formulas to static values", "text": "If needed, copy the combined column, then use Edit > Paste special > Paste values only to remove the formulas and keep just the text." } ] }