Skip to main content
Checks whether the incoming number is greater than the value you set here. The check only succeeds when the incoming value is strictly larger, so a value exactly equal to the one you set does not match. Use this to act only on amounts above a threshold, for example shipping an order only when its quantity is more than 100. If you want the threshold itself to count as a match, use Number: Greater than or equals instead.

Fields

Sample data

This compares each entity’s quantity field against the number 100.
FieldValue
Value100
Incoming valueResult
99Does not match
100Does not match
101Matches