Hi,
there is no such button.
But you shouldn't use "condition builder" anymore.
"ExpressionScript" is more flexible, mightier and easier to handle.
And you can use all implemented functions.
[url]
www.limesurvey.org/manual/ExpressionScri...ons_and_Relevance.3F
[/url]
Just the first "con" of "condition builder":
Try to generate a condition like
(Q1==1 OR (Q1=
![=3 =3](/smile3.gif)
AND Q2=="AAA")) AND ((Q4_SQ001==1 OR Q4_SQ003=
![=3 =3](/smile3.gif)
) and Q4_SQ004!=6)
Furthermore you only have to copy/paste your "condition", now called "relevance equation".
By the way
so I have to set the condition for each question manually
If you structure your survey well, you may set this condition on group level instead on question level (of course with ExpressionScript)
And in your screenshot I do not understand what you are trying to do.
There is twice the same condition
G01Q01_SQ01_SQ01=
If you are trying to display G01Q02 only if ALL subquestions of G01Q01 fulfill this condition (empty or equal 3) you really can do this easier.
Just count the cells that contain "3" by something like
countif("3",that.G01Q01.sq_X01)
And the empty cells by something like
countif("",that.G01Q01.sq_X01)
Then you can decide.
You see, here I coded the y-axis with "Y01", "Y02,... and the x-axis with "X01", "X02". This important or helpful if you use "self" or "that".
Read the manual about this
[url]
www.limesurvey.org/manual/ExpressionScri....22that.22_variables
[/url]
Joffm