Concatenate Strings with a Separator in Google Sheets

In Google Sheets, just like a comma, you can use any separator to concatenate two or more values. In this tutorial, we will learn all the methods to write a formula for this.

Using TEXTJOIN to Combine Values with Separator

You can use the below steps to write this formula:

  1. First, enter TEXTJOIN in a cell.
  2. Now, enter the delimiter to use a separator. Here we have used a space.
  3. After that, enter TRUE to tell the function to ignore empty cells.
  4. Next, refer to the range of cells which you want to concatenate.
  5. In the end, close the function and hit enter to get the result.
concatenate-strings-with-separator

And the moment you hit enter, combine the values from the range and the separator you defined.

combined-values-with-defined-separator
=TEXTJOIN(" ",TRUE,A1:A3)

Alternate Methods

Apart from the TEXTJOIN, you can use the CONCATENATE function + ampersand (&) to combine values with the separator. Below is an example to help you understand this.

concatenate-plus-ampersand
=CONCATENATE(A1," ",A2," ",A3)
=A1&" "&A2&" "&A3

Get the Sample Sheet