Skip to main content
Checks whether the value coming in equals the value you set here, while ignoring differences in type. Loose means the number 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’s quantity field against the number 12.
FieldValue
Value12 (number)
Incoming valueResult
"12" (text)Matches
12 (number)Matches
"5" (text)Does not match