/
listContains
PhixFlow Help
listContains
Function: listContains()
Returns the position of a value in a list (with 1 being the first item) if the value being looked for is found in the list, and false (0) otherwise.
Syntax
listContains(listToTest, valueToLookFor)
Argument | Type | Description |
---|---|---|
listToTest | Array | List of items in which the value will be looked for |
valueToLookfor | Any | The value being looked for in the list |
Examples
listContains(in.valueList,"red")
listContains() returns 3 if in.valueList = ["pink", "blue", "red", "yellow"] or 0 if in.valueList = ["pink", "blue", "black", "yellow"].
See Also
, multiple selections available,
Related content
listContains
listContains
More like this
listContains
listContains
More like this
listContains
listContains
More like this
listContains
listContains
More like this
listContains
listContains
More like this
Please let us know if we could improve this page feedback@phixflow.com