How to Combine 2 Cells in Excel

If you just need to combine 2 cells in excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: join cells with the & operator, for example =A2&" "&B2, or use =TEXTJOIN(" ", TRUE, range) for a whole list.

ƒxCombine Two ColumnsLive
Combined rows
3

3 rows joined

=A2&" "&B2 · =TEXTJOIN(" ",TRUE,A2:B2)
=A2&" "&B2
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

To merge text from several cells into one — first and last name, address parts, a code built from fields — you concatenate. The ampersand (&) glues values together, and you insert literal text like a space or comma in quotes between them. For many cells, TEXTJOIN takes a delimiter once and stitches the whole range, optionally skipping blanks. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. Treat “combine 2 cells in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a text operation that turns messy entries into clean, usable data into a method you can reuse, explain, and defend when the workbook leaves your screen.

A worked example

With "Lena" in A2 and "Bauer" in B2, =A2&" "&B2 returns "Lena Bauer" — the " " adds the space. To build a comma list from A2:A10, =TEXTJOIN(", ", TRUE, A2:A10) joins them all and the TRUE skips empty cells. The live preview above shows the joined result update as you type either name. Combining fields is the everyday glue of clean data — building full names, keys, file paths and labels from their parts. It is the inverse of splitting columns, and together they let you reshape any data set. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

In Google Sheets

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “combine 2 cells in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Forgetting the separator, so values run together as "LenaBauer".
  • Concatenating a number and losing its formatting — wrap it in TEXT() to keep currency or dates readable.
  • Leaving the original columns in place when a downstream tool expects only the combined one.
  • Using CONCATENATE (no delimiter argument) where TEXTJOIN would be far tidier.

Frequently asked questions

& or CONCATENATE or TEXTJOIN?

The & operator and CONCATENATE do the same simple join; TEXTJOIN is best for many cells because it takes the delimiter once and can skip blanks.

How do I keep a date readable when joining?

Wrap it in TEXT: =A2&" – "&TEXT(B2,"dd/mm/yyyy") so the date does not turn into a serial number.

Can I split combined text back apart?

Yes — use Text to Columns, or the SPLIT/TEXTSPLIT functions, to separate on the delimiter you joined with.

Other ways people ask this

On the way here you may have searched this as “excel combine 2 cells”, “excel formula to combine 2 cells”, “combine data in 2 cells in excel” and “how do you combine 2 cells in excel” — it is all the same task, and this page is the single, complete answer to it.

Why do people search for this in so many different ways?

Because the same task has many names. “excel combine 2 cells”, “excel formula to combine 2 cells”, “combine data in 2 cells in excel” all point at the one operation explained on this page, which is why they all lead here.