Join Function
Description:
The members of the first list followed by the members of the second list.
note
Note that duplicates are not removed from the join.
Returns:
Any*
Parameters:
Parameter | Data Type | Description |
|---|---|---|
1 | Any* | The first list. |
2 | Any* | The second list. |
Example:
When using functions inside a field, remember the field brackets:
{Join(EquityPartners, NonEquityPartners)}
Expression | Result |
|---|---|
Join( List("a","b","c"), List("b","c","d") ) | List("a","b","c","b","c","d") |