Page 1 of 1

2 Q's skip Statement

Posted: August 14th, 2015, 5:07 am
by MrTaco
Hi Guys

What's the Skip statement on " If "No" to 5.1 and 5.2 go to 5.4 is?

lets say Q5.1 = Yes=1/No=2 and Q5.2 = Yes=1/No=2.

Skip rule is If "No" to 5.1 and 5.2 go to 5.4

Thanks thabiso

Re: 2 Q's skip Statement

Posted: August 14th, 2015, 6:35 am
by josh
If the rule is that if the person answers "No" to both 5.1 and 5.2 then the logic would be:

if Q51 = 2 and Q52 = 2 then
skip to Q53;
endif;

It would go in the postproc of Q52.

Re: 2 Q's skip Statement

Posted: August 18th, 2015, 2:12 am
by MrTaco
Thanks Josh