I'm trying to make a checkbox option to admite three answers. The problem is I have a set of answers and the clerk is supposed not to read them but let the interviewee say it and the clerk regist the answers. The solution I found is to make checkboxes so the clerk don't have the problem of moving forward and backward. But I have three possible answers for that:
//setting the values for the questions
if pos("A", P32) <> 0 then
if accept("This advantage is big or small?","Big","Small")=1 then P32_1 = 1
else P32_1 = 2;
endif
else P32_1 = 9;
endif;
The file with the is here
Dealing with checkbox with trhee answers.zip
You do not have the required permissions to view the files attached to this post.
I have slightly edited your application in the attached and hope it does what you intend to do. The questions making up the overall should be defined as sub-items, not as items on their own. Best...
You do not have the required permissions to view the files attached to this post.