FormulaCraft

How to combine multiple columns into one in Excel and Google Sheets

Topic:Data cleaning & shaping

Heads up: Excel and Google Sheets do this differently.

Excel
=A2&" "&B2&" "&C2
Google Sheets
=TEXTJOIN(" ",TRUE,A2,B2,C2)

Verified example

Computed by a real spreadsheet engine on the sample data below.

FirstMiddleLastFull Name
AliceMSmith
BobJones
CarolALee
DavidRKim
EveBrown

=A2&" "&B2&" "&C2Alice M Smith

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Simple concatenation (both apps): In D2 type =A2&" "&B2&" "&C2 — replace " " with any delimiter like ", " or "-".
  2. 2In Google Sheets or Excel 2019+, use TEXTJOIN for cleaner syntax: =TEXTJOIN(" ",TRUE,A2:C2) — the TRUE argument skips empty cells.
  3. 3Copy the formula down all rows and the output updates as source data changes.

Tips

Need it for your exact data?

Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.

Frequently asked

What's the difference between CONCAT and CONCATENATE?

CONCAT accepts ranges; CONCATENATE only accepts individual cell references. Both join text without a delimiter. Use & or TEXTJOIN for delimiter control.

How do I combine an entire column into one cell?

Use TEXTJOIN with a range: =TEXTJOIN(", ",TRUE,A2:A100) — this joins all values in A2:A100 with a comma-space separator.

More on Data cleaning & shaping

See all →

Formulas used

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: