If I want to show text conditionally how do you build your formula?
if = true, text1
if = false, text2
If your true/false value is held in pageVars.condition
you can use the formula:
IF(pageVars.condition, "text1", "text2")
1 Like