Thanks for the quick response!
The back button option unfortunately won't work with my design; the participant must eventually respond to the question. I have come up with the following that works. Thanks again for clarifying the functionality of skip.
Best,
Lisa
------------------------
<radiobuttons Q1>
/ caption = "Here is the first question?"
/ options = ("Yes",
"No",
"I am not sure",
"Skip")
/ optionvalues = ("0", "1", "5","Skip")
</radiobuttons>
<radiobuttons Q1again>
/ caption = "Here is the first question?"
/ options = ("Yes",
"No",
"I am not sure")
/ optionvalues = ("0", "1", "5")
</radiobuttons>
------------------------
<image 8shapes>
/ position = (40%,10%)
/ items = ("8shapes.png")
</image>
<radiobuttons Q3>
/ caption = "This is my second question"
/ options = ("#1", "#2", "#3", "#4", "Answer not here","Skip")
/ optionvalues = ("0","0","1","0","5","Skip")
/ position = (40%,50%)
</radiobuttons>
<radiobuttons Q3again>
/ caption = "This is my second question"
/ options = ("#1", "#2", "#3", "#4", "Answer not here")
/ optionvalues = ("0","0","1","0","5")
/ position = (40%,50%)
</radiobuttons>
-----Survey Pages-----
<surveypage Ques1>
/ questions = [1=Q1]
/ showquestionnumbers = false
</surveypage>
<surveypage Ques3>
/ questions = [1=8shapes; 2=Q3]
/ showquestionnumbers = false
</surveypage>
<surveypage Ques1again>
/ questions = [1=Q1again]
/ showquestionnumbers = false
/ skip=[radiobuttons.Q1.response != "Skip"]
</surveypage>
<surveypage Ques3again>
/ questions = [1=8shapes; 2=Q3again]
/ showquestionnumbers = false
/ skip=[radiobuttons.Q3.response != "Skip"]
</surveypage>
<survey RNAssessment>
/ pages = [1=Ques1; 2=Ques3; 3=Ques1again; 4=Ques3again]
</survey>