How can I base a question on multiple previous answers?

If you have a question in your questionnaire that is dependent on two different previous answers (Question 7 depends on the answers of Question 1 and Question 3, for example) - You can then use the AND conditional statement. 

Stencil description:

  • AND -> (&)

Code example:

{% if value1 == "Example" & value3 == "Example1" %} Insert the text to be displayed in Question 7 when the conditions are met {% end %}