Skip to main content
Checks whether a value matches one of the items in a list you provide. Use this when a field is only valid if it equals one of a fixed set of options, for example accepting an order only when its country is one of the regions you ship to, or treating a status as valid only when it is one of a handful of known values. The check is exact and also compares the data type, so the text "5" does not match the number 5.

Fields

Sample data

With the allowed values set to NL, BE, and DE, the condition checks whether a country code is one of them.
FieldValue
Allowed valuesNL, BE, DE
ValueResult
BEMatches
USDoes not match