Hello there, I'm trying to check if the participant has answered some questions in the group. Questions have sub-questions. Writing
Code:
{count(that.QFin1.NAOK)>0}
is just triggered when any subquestion gets an answer.
I need to check all the answers are collected, in a list of questions. So I wrote
Code:
{countif(4,that.QFin1.NAOK,that.QFin2.NAOK,that.QFin3.NAOK, that.QFin4.NAOK)>0}
but is always returning 0.
Maybe because the survey isn't activated yet, and isn't collecting answers?