Skip to main content
Checks whether the value coming in is not strictly equal to the value you set here. It is the exact opposite of Equals (Strict): the condition is met whenever the incoming value differs in either its content or its type. Because the comparison is strict, the text "12" counts as different from the number 12. Use this to act on everything except one specific value, for example to handle all statuses other than "cancelled". If you want "12" and 12 to be treated as the same, use Does not equal (Loose) instead.

Fields

Sample data

This compares each entity’s quantity field against the text value "12" and is met when they are not strictly equal.
FieldValue
Value"12" (text)
Incoming valueResult
"12" (text)Does not match
12 (number)Matches
"5" (text)Matches