Join
- 19 May 2022
- 1 Minute to read
-
DarkLight
-
PDF
Join
- Updated on 19 May 2022
- 1 Minute to read
-
DarkLight
-
PDF
Joins a list of component texts into a single concatenated text, with each component text separated by the optional separator parameter.
Function signature
JOIN(values: Array, separator: String) => String
Parameter | Description |
---|---|
Values | List of text values |
Separator | Separator for texts |
Examples
Formula | Return value |
---|---|
JOIN(["a", "b", "c"], ", ") |
a, b, c |
JOIN([], "") |
'' |
Was this article helpful?