ConcatCrossjoin
Use ConcatCrossjoin to generate a single string with values separated by asterisks.
ConcatCrossjoin is a helper function that can be used to input an array of values and output a single string that contains asterisks separated values. ConcatCrossjoin requires a minimum of 1 value and a maximum of 20.
Syntax
ConcatCrossjoin("<value 1>", "<value 2>", "<value 3>", [...])
Argument |
Description |
Required/Optional |
---|---|---|
Value |
The value that you want to asterisks-splice join. |
Required |
Example
Example input
ConcatCrossjoin("computer", "laptop", "tablet", "mobile")
Example output
"computer*laptop*tablet*mobile"