SheetRocks
Documentation/Formulas/JOIN

JOIN

Returns the combination of two or more one-dimensional arrays, separated by delimiter.

Syntax

JOIN(delimiter, value1, [value_n])

Arguments

Argument Description Required
delimiter The character or string to place between the concatenated values. Required
value1 The value or values to be appended using delimiter. Required
value_n Additional value or values to be appended. Optional

Examples

Join text with dash delimiter

=JOIN("-", A1:A3)
Result ⇒ brook trout-species-Animal
A
1 brook trout
2 species
3 Animal

Join text with range and additional values

=JOIN("-", A1:A3, 2, 3, 4)
Result ⇒ brook trout-species-Animal-2-3-4
A
1 brook trout
2 species
3 Animal

Join individual values

=JOIN("-", "A", "B", "C")
Result ⇒ A-B-C

Related Functions

Other Text functions:


← Back to Formula Reference