Learn To Concatenate Multiple Contiguous Cells
Keywords
Preview
In Google Sheets, you can concatenate multiple contiguous cells using the CONCATENATE
function, the &
operator, or the TEXTJOIN
function. Here's how to use each method:
Method 1: Using CONCATENATE Function
If you want to concatenate a specific range of cells:
- Select the cell where you want to display the result.
- Use the
CONCATENATE
function:
Replace=CONCATENATE(A1, A2, A3)
A1
,A2
, andA3
with the actual cell references.
Method 2: Using the & Operator
You can also use the &
operator to concatenate the cells:
=A1 & A2 & A3
Again, replace A1
, A2
, and A3
with the actual references.
Method 3: Using TEXTJOIN Function
If you need to concatenate a range of contiguous cells with a delimiter (like a space or comma), TEXTJOIN
is very convenient:
- Select the cell where you want to display the result.
- Use the
TEXTJOIN
function:
Here,=TEXTJOIN(", ", TRUE, A1:A3)
", "
is the delimiter (a comma and space),TRUE
ignores empty cells, andA1:A3
is the range of cells to concatenate.
Example
If you have values in cells A1 (Hello), A2 (World), and A3 (2023):
-
Using CONCATENATE:
=CONCATENATE(A1, " ", A2, " ", A3)
This would output:
Hello World 2023
-
Using & Operator:
=A1 & " " & A2 & " " & A3
This yields the same result.
-
Using TEXTJOIN:
=TEXTJOIN(" ", TRUE, A1:A3)
This also gives you:
Hello World 2023
Choose the method that fits your needs based on whether you want to include a delimiter or handle empty cells!