Category: Text function
This function returns TRUE if list1 contains all the distinct values from list2.
Argument | Type | Description |
---|---|---|
list1 | List (Text) | A delimited set of string values. |
list2 | List (Text) | A delimited set of string values. |
separator | Text | The delimiter to use in the concatenation of the output string. If not defined, the default is comma. |
Return value type: Boolean (TRUE/FALSE)
All leading and trailing spaces are removed from around the list values.
setcontainsall("A, B, C", "B,C") //returns TRUE setcontainsall("A;B", "B ;C", ";") //returns FALSE (list1 does not contain "C")