Joins a list of strings together.
Function
join(input, [separator])
Arguments
Argument | Data Type |
input | string list |
---|---|
separator | string |
result | string |
Comments
Joins a list of strings together using the separator. The default separator is a comma.
Consider using the text template functions for more complicated text generation.
The join function is not available in report calculations.
Examples
join([Business Email])
join([Business Email], '; ')