IF
Let's you return one of two values based on whether the given condition is true or false.
Syntax
IF(condition, a, b)
Example
if({{price}}>100, 'YES', 'NO')
Notes
If true return a, else return b
Useful for toggling a field's dynamic value based on previous answers.