Hi,
you can do it, but PLEASE do not use this "condition builder"!
Use ExpressionScript. It's easier, mightier and more flexible,.
Read the manual about the comparison of the two options.
[url]
www.limesurvey.org/manual/ExpressionScri...ons_and_Relevance.3F
[/url]
With ExpressionScript this is quite easy:
If Q1 is a multiple question and you want to show Q2 only
- if SQ001 OR SQ004 in Q1 were selected: Q1_SQ001=="Y" OR Q1_SQ004=="Y"
- if SQ001 AND SQ004 in Q1 were selected: Q1_SQ001=="Y" AND Q1_SQ004=="Y"
This way you can build really complex conditions like
(Q1a==1 OR (Q1a==4 AND Q1b_SQ001==“Y“)) AND (Q1c>29 AND Q1c<60)
Meaning:
(
Q1a was answered with option 1
OR
Q1a was answered with option 4 AND subquestion SQ001 of Q1b was selected
)
AND
the value of Q1c was between 30 and 59