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