If greater than or equal to
Conditionally merges different content depending on if the condition is true (if x >= y).
SYNTAX
{{#ifGte data value}}true content{{else}}false content{{/ifGte}}
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:
{{#ifGte Contact.points 100}} You are on a roll! {{/ifGte}}
A. Contact’s points field has the value 105
You are on a roll!
B. Contact’s points field has the value 100
You are on a roll!
C. Contact’s points field has the value 95
No content is merged