If less than or equal to
Conditionally merges different content depending on if the condition is true (if x <= y).
SYNTAX
{{#ifLte data value}}true content{{else}}false content{{/ifLte}}
PARAMETERS
Name | Type | Required | Description |
---|---|---|---|
Data | Text or Number | Required | Data to be evaluated. |
Value | Text or Number | Required | Value that data is being compared to. |
EXAMPLES
The examples below are based on the following sample content:
{{#ifLte Contact.points 100}} Keep up the good work! {{/ifLte}}
A. Contact’s points field has the value 99
Keep up the good work!
B. Contact’s points field has the value 100
Keep up the good work!
C. Contact’s points field has the value 109
No content is merged