To answer your second question: Of course it does.
And the first:
Always remember:
In "condition" is entered a logical term that is either TRUE or FALSE.
If TRUE, the group/question/subquestion is displayed, else not.
Now there is the usual confusion about "multiple choice question".
Is it a single punch question "list(radio)", etc. or a "multiple" question?
1. Single question
let's say the first and the third answer option make the next question appear.
So if the first option is selected or the third option is selected, your condition has to be TRUE.
Obviously the condition is :
Q1==1 OR Q1= (assuming you used numerical codes)
2. Multiple question
I think you know already that in a multiple question the result of each subquestion is saved as: "Y"=selected, ""=not selected.
Now the same condition: The first and/or the third subquestion is selected -> next question displayed.
Q1_SQ001=="Y" OR Q1_SQ003=="Y"
And here the result
Joffm