The old & operator joins cells one at a time. To combine a whole range in one go — a column of names into a sentence, a row of codes into one string — use CONCAT (just glue) or TEXTJOIN (glue with a separator, skipping blanks).
&.
The example
A column joined into one delimited string.
| A | C | ||
|---|---|---|---|
| 1 | Item | Joined | |
| 2 | Apple | Apple, Banana, Cherry | |
| 3 | Banana | ||
| 4 | Cherry |
The formula
The whole column as one string:
How it works
One function reads the entire range:
TEXTJOIN(delimiter, ignore_blanks, range)takes the whole range at once — no need to reference each cell.- The delimiter (
", ") is placed between items, not after the last. TRUEskips empty cells so you don’t get", ,"gaps.CONCAT(A2:A4)does the same with no delimiter and keeps blanks — use it when you just want everything glued together.
Conditional join: wrap a FILTER inside TEXTJOIN to combine only the matching items — =TEXTJOIN(", ", TRUE, FILTER(A2:A100, B2:B100="West")) lists just the West names.
Try it: interactive demo
Edit the items and delimiter; see the joined string.
Variations
CONCAT (no delimiter)
Glue a range with nothing between:
Join with line breaks
Stack items (Wrap Text on):
Join only matching rows
Combine with FILTER:
Pitfalls & errors
TEXTJOIN/CONCAT need Excel 2019+. Older versions only have CONCATENATE (no range support) and & — you must reference cells individually there.
32,767-character limit. Joining a huge range can overflow the cell. Join a smaller set.
Numbers lose formatting. $1,200 joins as “1200.” Wrap values in TEXT first if formatting matters.
Practice workbook
Frequently asked questions
How do I join a whole range of cells in Excel?
What's the difference between CONCAT and TEXTJOIN?
How do I join only cells that meet a condition?
Stop fighting formulas. Learn them in a day.
This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class