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’squantity field against the number 12 and is met when they are not loosely equal.
| Field | Value |
|---|---|
| Value | 12 (number) |
| Incoming value | Result |
|---|---|
"12" (text) | Does not match |
12 (number) | Does not match |
"5" (text) | Matches |