<aside> <img src="/icons/info-alternate_orange.svg" alt="/icons/info-alternate_orange.svg" width="40px" />
Checks a condition and returns one value if the condition is true and another if it’s false.
</aside>
if(condition, value_if_true, value_if_false)
<aside> <img src="/icons/info-alternate_orange.svg" alt="/icons/info-alternate_orange.svg" width="40px" />
Checks more than one condition in sequence and sets the value to the first true condition. If non of the conditions are true it sets a default value.
</aside>
ifs(
condition, value_if_true,
condition, value_if_true,
value_if_all_false
)
This example checks if two values are the same - in the database below we want to check to see if the number in the Value 1 property is the same as the number in the Value 2 property.
if(prop("Value 1") == prop("Value 2"), "Yes", "No")
Image of the formula in the database👆
In the database below we want to check to see if the number in the Value 1 property is less than, greater than or the same as the number in the Value 2 property.
ifs(
prop("Value 1") > prop("Value 2"), "Greater than",
prop("Value 1") < prop("Value 2"), "Less than",
"Equal"
)
Image of the formula in the database👆