In Excel: 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.
3 rows joined
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. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “combine column data in excel”. Start on a copy or a tiny sample, keep the affected columns visible, and compare the result with the tool above before you touch the real workbook. 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. The point is a text operation that turns messy entries into clean, usable data, but the practical win is that someone else can open the file and understand what happened without asking you.
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. 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
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. Here is the takeaway for “combine column data in excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.
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&B2formulas — 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.
Frequently asked questions
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.