I have a survey with tokens enabled with multiple custom attributes. I have one custom attribute that is either blank or will contain Yes. I would like to be able to use relevance equations to display or hide questions based on whether the attribute is Yes or not but I can't seem to make it work. I have tried the equation
Code:
TOKEN:ATTRIBUTE_6=='Yes'
and it has had no effect. I have also tried
Code:
!is_empty(TOKEN:ATTRIBUTE_6)
but still nothing. I then thought I could set TOKEN:ATTRIBUTE_6 as the default answer to a hidden question called status and writing the relevance equation
Code:
!is_empty(status)
and it still did not work. Any ideas as to what I am doing wrong or if what I want to do is possible.