Hello,
I am building a survey of questions that I would like a participant to have the option of skipping and then returning to after they have been through all the questions. I can't quite figure out if I can do this with Inquisit. My current code is below. I have also tried / skip=[radiobuttons.Q1 != "Skip"], and using the skip attribute in the survey element. These options skip all the questions before a participant has had the option of choosing skip.
Any thoughts?
Thanks,
Lisa
<radiobuttons Q1>
/ caption = "Here is the first type of question?"
/ options = ("Yes",
"No",
"I am not sure",
"Skip")
/ optionvalues = ("0", "1", "Not sure","skip")
</radiobuttons>
<image 8shapes>
/ position = (40%,10%)
/ items = ("8shapes.png")
</image>
<radiobuttons Q3>
/ caption = "This is my second type of question"
/ options = ("#1", "#2", "#3", "#4", "Answer not here","Skip")
/ optionvalues = ("0","0","1","0","Not here","skip")
/ position = (40%,60%)
</radiobuttons>
<surveypage Ques1>
/ questions = [1=Q1]
/ showquestionnumbers = false
/ skip=[radiobuttons.Q1 >= 0]
</surveypage>
<surveypage Ques3>
/ questions = [1=8shapes; 2=Q3]
/ showquestionnumbers = false
/ skip=[radiobuttons.Q3 >= 0]
</surveypage>
<survey RNAssessment>
/ pages = [1=Ques1; 2=Ques3]
</survey>