ListNE Function
Description:
Those members of the list that are not equal to the compared value.
Returns:
Any*
Parameters:
Parameter | Data Type | Description |
|---|---|---|
1 | Any* | The list. |
2 | Any | The compare value. |
Examples:
When using functions inside a field, remember the field brackets:
{ListNE(MemberList, StaffList)}
Expression | Result |
|---|---|
ListNE( List("a","b","a","c","c"), "a" ) | List("b","c","c") |
ListNE( List("a","b","a","c","c"), "z" ) | List("a","b","a","c","c") |