Hi,
first:
Why do you have three times the same identical group?
In your analysis you are able to split these groups by question "G00Q01".
But your main question:
how to drive, if there are multiple variables at the start!
As I said before "Read the manual"
Here
[url]
www.limesurvey.org/manual/ExpressionScri...tion-Level_Relevance
[/url]
you see
showing how two conditions are concatenated.
And here all operators
[url]
www.limesurvey.org/manual/ExpressionScri...esentation#Operators
[/url]
"AND" and "&&" are eqivalent,
"OR" and "||" as well.
So it will be something like:
G00Q01 == "AO02" AND G00Q02=="AO02"
And as you use assessmant values in the second question you could say
G00Q01 == "AO02" AND G00Q02.value==2
And something else.
Why do you use this assessment values instead of numerical codes?
Then it is
G00Q01 == "AO02" AND G00Q02==2
Joffm