TEXTJOIN IF

There are two ways to “textjoin if”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

In Excel: use =TEXTJOIN(delimiter, ignore_empty, range) — it joins a whole range into one string, putting your delimiter between items and optionally skipping blank cells.

Syntax

=TEXTJOIN(delimiter, ignore_empty, text1, [text2], ...)

Arguments

ArgumentDescription
delimiterrequiredThe text placed between each item, such as ", " for a comma-separated list.
ignore_emptyrequiredTRUE skips blank cells (so no double delimiters); FALSE keeps them.
text1requiredThe first cell, range or string to join, such as A2:A6.
text2, ...optionalOptional further cells, ranges or strings to append.

Related functions

CONCATENATELEFT/RIGHT/MIDSUBSTITUTE
Annotated stepsExcel
1

In the result cell type =TEXTJOIN( and type the delimiter in quotes, such as ", " for a comma-separated list.

2

Type a comma, then TRUE to skip blank cells (or FALSE to keep them).

3

Type a comma and select the range to join, such as A2:A6.

4

Close the bracket and press Enter to see the combined string.

5

Add more comma-separated ranges or cells before the closing bracket if the values are spread out.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

TEXTJOIN joins many values into one string with a delimiter you set once, and it accepts a whole range rather than item-by-item arguments — its two big advantages over CONCATENATE. The first argument is the separator (for example ", "), the second decides whether blank cells are skipped (TRUE) or kept as empty slots (FALSE), and then you point it at a cell, a range, or several of them. With ignore_empty TRUE you never get doubled-up delimiters from gaps in the data. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. Treat “textjoin if” 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

Tags sit in A2:A6 as "red", "", "blue", "", "green" with two blanks. =TEXTJOIN(", ", TRUE, A2:A6) returns "red, blue, green" — the comma-space separates each value and the empty cells are skipped, so there are no ", ," gaps. With FALSE instead of TRUE it would return "red, , blue, , green", keeping the blanks as empty entries. TEXTJOIN is the modern way to build delimited lists from a column — comma-separated tags, address lines, email recipients — joining a range in one step and skipping the blanks. 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. 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. Here is the takeaway for “textjoin if”: 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

  • Swapping the first two arguments — the delimiter comes first and ignore_empty second, not the other way around.
  • Leaving ignore_empty as FALSE on data with gaps, which produces ugly doubled delimiters like "red, , blue".
  • Forgetting the quotes around the delimiter, so a literal separator such as ", " is misread and the formula errors.

Frequently asked questions

How is TEXTJOIN better than CONCATENATE?

TEXTJOIN takes a whole range at once, sets the separator a single time instead of inserting it between every pair, and can skip blank cells automatically — three things CONCATENATE cannot do.

How do I stop empty cells from adding extra delimiters?

Set the second argument, ignore_empty, to TRUE. TEXTJOIN then skips blank cells entirely, so a range with gaps joins cleanly without ", ," runs.

Can TEXTJOIN use a line break as the delimiter?

Yes — use CHAR(10) as the delimiter, =TEXTJOIN(CHAR(10), TRUE, A2:A6), and turn on Wrap Text in the cell so each joined value appears on its own line.