Hi again Dave,
In addition to my previous question, I’m also curious about how
to create a force response for a question but only if the previous question is
answered in a certain way. In other words, I want my participants to answer
Question 1b only if they answered Question 1a as “Yes”; otherwise, they should
be able to skip that question. How can I create this? Here is our script:
<radiobuttons know1>
/ caption = "Are you acquainted with someone called
Terry?"
/ options = ("Yes", "No")
/ optionvalues = ("1", "2")
/ orientation = vertical
/ required = true
</radiobuttons>
<radiobuttons close1>
/ caption = "If yes, how close are you with
Terry?"
/ options = ("Not at all", "",
"", "", "Very much")
/ optionvalues = ("1", "2",
"3", "4", "5")
/ orientation = vertical
/ required = false
</radiobuttons>
Thank you so much!