Multiple Choice questions are separated into basically several "Yes/No" questions. Each choice is considered a subquestion.
So to check if your first item has been checked you need to do something like {if(questioncode_subquestioncode=="Y",dosomething, elsedothis)}.
So in your case, to show the group QGroup2 you need to check wether one of the 3 Subquestions is empty, rather than checking if all are "Y".
Something like this relevance equation in QGroup2 should work:
Code:
Consent1_SQ001 == "" OR Consent1_SQ002 == "" OR Consent1_SQ003 == ""
However, this probably will only work if the second question group (QGroup2) is not on the same page as the first group/question, because otherwise the second group would be shown from the beginning and only disappear if someone marks all options.
I just tried this at the LS demo here and it works. The second group shows when at least one of the 3 options from Consent1 has not been marked and thus disappears / doesn't show when all 3 have been marked.
See the attached LSS file (which you should always add for us, when possible, because we do not have to "rebuild" your structure and we can see what you have already tried.