Union Function

Description:
Those members of the first list plus those members of the second with duplicates removed.
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:
{Union(StaffList, MemberList)}
Expression
Result
Union( List("a","b","c"), List("b","c","d") )
List("a","b","c","d")

Related content