Combine Two Columns

Free Combine Two Columns: put =A2&" "&B2 in a new column to glue the two side-by-side cells together, or =TEXTJOIN(" ",TRUE,A2:C2) for several columns...

ƒxCombine Two ColumnsLive
Combined rows
3

3 rows joined

=A2&" "&B2 · =TEXTJOIN(" ",TRUE,A2:B2)

How it works

Exact answer

In Excel or Google Sheets, put =A2&" "&B2 in a new column to glue the two side-by-side cells together, or =TEXTJOIN(" ",TRUE,A2:C2) for several columns at once; copy the formula down the whole column.

Step by step
1

Insert a new empty column to the right of the two you want to combine.

2

In its first data cell type =A2&" "&B2, putting a space, comma or other separator in quotes between the references.

3

Press Enter, then double-click the fill handle to copy the formula down the whole column.

4

For several columns at once use =TEXTJOIN(" ",TRUE,A2:C2); or skip formulas entirely and press Ctrl+E to Flash Fill from one typed example.

What this does

Combining columns takes the value from each row of two (or more) neighbouring columns and writes them into a single new column, row by row down the whole table — first name beside last name becomes one full-name column. The ampersand (&) joins the two cells of a row with whatever literal text you put in quotes between them, and you copy that one formula down so every row is combined at once. TEXTJOIN does the same across a wider band of columns, taking the separator a single time. This is a per-row column operation, quite different from joining a couple of stray cells or visually merging cells into one box.

A worked example

Column A holds first names and column B holds last names, with "Ada" in A2 and "Lovelace" in B2. In C2 type =A2&" "&B2 and press Enter: C2 reads "Ada Lovelace", the " " supplying the space between them. Double-click the fill handle and the formula copies down so every row of column C combines its A and B. For three columns at once, =TEXTJOIN(" ",TRUE,A2:C2) joins A2, B2 and C2 with single spaces. No formula at all? Type the first combined result by hand, then press Ctrl+E (Flash Fill) and Excel fills the rest from the pattern. Combining columns is how you fold scattered fields into the single column a mail merge, import or lookup expects — first + last into full name, street + city into one address line. It is the everyday inverse of splitting one column into several.

Common mistakes

  • Reaching for Merge & Center — that visually fuses cells and keeps only the top-left value, it does not combine the two columns row by row.
  • Forgetting the separator, so "Ada" and "Lovelace" run together as "AdaLovelace".
  • Deleting the source columns A and B while the new column still holds live =A2&B2 formulas — copy the result and Paste Special ▸ Values first.
  • Combining a number or date directly and losing its formatting — wrap it in TEXT() to keep it readable.

FAQ

How do I combine two columns without a formula?

Type the combined result for the first row by hand, then press Ctrl+E (Flash Fill). Excel detects the pattern and fills the rest of the column instantly — no formula required.

How do I combine more than two columns?

Use =TEXTJOIN(" ",TRUE,A2:C2): it takes the separator once and joins the whole span A2:C2, with the TRUE skipping any empty cells.

Can I delete the original columns afterwards?

Not while the formula references them. First select the new column, copy it, then Paste Special ▸ Values to freeze the text — only then is it safe to delete columns A and B.

What you can practise with it

Built in your browser when you click. Nothing is uploaded, no signup, free for commercial use.

Embed this tool on your site

Free to use on any website, including commercial ones. Paste the snippet where the calculator should appear — it works on its own, loads lazily, and sends no data anywhere.

Embed code
Optional: make the frame grow with the tool

Add this next to the snippet and the iframe resizes itself instead of scrolling.

The one condition: keep the credit link under the tool visible and crawlable.