12 and the text "12" are treated as the same thing, so a field that arrives as text still matches a number you typed (and the other way around). Use this when your source data is inconsistent about types, which is common with values read from spreadsheets, CSV files, or query strings where everything arrives as text. If you need an exact match where type matters, use Equals (Strict) instead.
Fields
Sample data
This compares each entity’squantity field against the number 12.
| Field | Value |
|---|---|
| Value | 12 (number) |
| Incoming value | Result |
|---|---|
"12" (text) | Matches |
12 (number) | Matches |
"5" (text) | Does not match |