Equivalent Function
Description:
Test if two lists have identical memberships.
Returns true if both lists contain the same members, with or without duplicates, and returns false otherwise.
Returns:
Boolean
Parameters:
Parameter | Data Type | Description |
|---|---|---|
1 | Any* | The first list. |
2 | Any* | The second list. |
Examples:
When using functions inside a field, remember the field brackets:
{Equivalent(MemberList, StaffList)}
Expression | Result |
|---|---|
Equivalent( List("a","b","c"), List("a","a","c","b") ) | true |
Equivalent( List("a","b","c"), List("a","a","c","c") ) | false |