CONCATALL
Concatenates all items in a list using a specified delimiter.
Last updated
Was this helpful?
Concatenates all items in a list using a specified delimiter.
The CONCATALL function joins multiple values from a list into a single text string, separated by the chosen delimiter. It is commonly used to combine dimension values, text inputs, or mixed data (numbers and text) into one formatted string. Any numeric values in the list are automatically converted to text before concatenation.
CONCATALL(["string1","string2",...,"stringn"],"delimiter")["string1", "string2", ..., "stringn"] - A list of items that need to be joined. A list of strings. Any number in the list will also be concatenated into a string.
delimiter - String delimiter, such as "--", " ", etc.
CONCATALL(["Product1","Product2"],"--")
//returns the concatenated string: Product1--Product2 In the following example, we concatenated the values of a row dimension and a text input measure.

Last updated
Was this helpful?
Was this helpful?