GroupByNE Function
Description:
Returns the second part of a list of pairs where the first part is not equal to the compared value.
Returns:
Any*
Parameters:
Parameter | Data Type | Description |
|---|---|---|
1 | Any** | The list of pairs |
2 | Any | The compare value. |
Examples:
When using functions inside a field, remember the field brackets:
{GroupByNE(MemberNamesIDsList, StaffList)}
Expression | Result |
|---|---|
GroupByNE( List(List("a","z"),List("b","y"),List("a","x"),List("c","w")), "a" ) | List("y", "w") |
GroupByNE( List(List("a","z"),List("b","y"),List("a","x"),List("c","w")), "c" ) | List("z", "y", "x") |
GroupByNE( List(List("a","z"),List("b","y"),List("a","x"),List("c","w")), "d" ) | List("z", "y", "x", "w") |