Skip to main content
Checks whether the value coming in is not equal to the value you set here, while ignoring differences in type. It is the opposite of Equals (Loose): the number 12 and the text "12" are treated as the same value, so neither of them meets this condition when you compare against 12. Use this to act on everything except one value when your source data is inconsistent about types, which is common with data read from spreadsheets, CSV files, or query strings. If you need an exact match where type matters, use Does not equal (Strict) instead.

Fields

Sample data

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