ListEQ Function
Description:
Those members of the list that are 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:
{ListEQ(MemberList, ClientName)}
Expression | Result |
|---|---|
ListEQ( List("a","b","a","c","c"), "a" ) | List("a","a") |
ListEQ( List("a","b","a","c","c"), "b" ) | List("b") |
ListEQ( List("a","b","a","c","c"), "z" ) | List() |