"12" does not count as equal to the number 12, because one is text and the other is a number. Use this when you want an exact, no-surprises comparison, for example to act only when a field holds precisely the text or number you expect. If you want "12" and 12 to be treated as the same thing, use Equals (Loose) instead.
Fields
Sample data
This compares each entity’squantity field against the text value "12".
| Field | Value |
|---|---|
| Value | "12" (text) |
| Incoming value | Result |
|---|---|
"12" (text) | Matches |
12 (number) | Does not match |
"5" (text) | Does not match |