Hi,
I have a multi select question with 4 alternatives. If you choose 1, 2 or 3 then you will get a new question that shows alternative 1 if you chose 1, 2 if you chose 2 and also 3 if you chose 3. These alternatives are formulated different so they are another list. I tried to use this constructed list in the second question, but I get an error. Do you know how to make it work?
Thanks
So Q7a is the first question while the parent list is the second question
Begin Unverified Perl
if(VALUE("Q7a_1")=1){ADD(PARENTLISTNAME(),1);}
if(VALUE("Q7a_2")=1){ADD(PARENTLISTNAME(),2);}
if(VALUE("Q7a_3")=1){ADD(PARENTLISTNAME(),3);}
End Unverified