Greater Than
Use Greater Than conditional logic when you only want to send data to the receiver if a submitted form value is numerically larger than a value you specify. This is most useful with numeric fields such as quantity, price, age, score, or any number captured by the form.
How it works
- The plugin reads the submitted value of the chosen form field.
- The value is cast to a number. Non-numeric input (e.g. twenty) is treated as 0.
- If the submitted number is strictly greater than the comparison value, the rule passes and the integration runs. Equal values do not pass — use Greater Than or Equal for that.
Example 1 — Only send orders worth more than $100 to your CRM
- Open your integration and scroll to Conditional Logic.
- Field:
order_total(or whatever your form’s amount field is called). - Operator: Greater Than.
- Value:
100.
An order of $99 will be ignored; an order of $100.01 will be sent.
Example 2 — Only notify Slack for age 18 and above
Field: age · Operator: Greater Than · Value: 17. Submissions where age is 18 or higher will trigger the integration; 17 and below are skipped.
Notes & caveats
- Decimals work.
9.99>9.5evaluates true. - Empty fields fail the rule (treated as 0). If you want to include empties in some cases, add an Any branch with a separate Equal To empty rule.
- Currency / thousands separators. Strip these before comparison:
1,000is read as1. Use a number-only field on the sender form. - Combine with Any / All to layer multiple rules.