CONTAIN

Returns TRUE if the list contains the specified value, FALSE otherwise

Usage

CONTAIN(list, value)

Parameters

list

(Required) The list to search into

value

(Required) The value to search for

Examples

Example With these variables Result

CONTAIN([“CAD”, “USD”], “USD”)

(None)

TRUE

CONTAIN(currencies, “EUR”)

currencies is ["CAD", "USD"]

FALSE

More information

The [ and ] mark the beginning and end of a list.

See also