FormulaCraft

TEXTJOIN

Join text from multiple cells with a separator, skipping blanks.

TEXTJOIN combines values with a delimiter and can ignore empty cells — cleaner than chaining & or CONCATENATE.

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

How it works

  1. 1" " is the separator between values.
  2. 2TRUE skips empty cells.
  3. 3A2, B2 are the values to join.

Need a version for your data?

Try: “Join first name in A2 and last name in B2 with a space

Related