+xThank you for this answer!
I am still a little confused about branching. Ill try to give more detail about what I want to do.
Here is my qualification question:
<dropdown Race>
/ caption = "Do you identify as:"
/ options = ("American Indian or Alaska Native", "Asian", "Black or African American", "Hispanic, Latina/Latino or Spanish origin", "Native Hawaiian or Other Pacific Islander", "White", "Some other race or origin")
/ fontstyle = ("Calibri", 13pt, true, false, false, false, 5, 0)
</dropdown>
I'd like the participants who select "Black or African American" to then receive one block of questions and the participants who choose "White" to receive a different block. Furthermore I need the participants who select any other option to be taken to a disqualification page. After the two blocks that will be different for people who select either "Black" or "White" - the rest of the survey is identical.
How would the "branch" option work here? Tried specifying it for all the options from the qualification questions, but unfortunately it didn't work.
Thank you for your help!
> How would the "branch" option work here? Tried specifying it for all the options from the qualification questions, but unfortunately it didn't work.
You should use the /skip here instead of /branch -- it will be easier.
<dropdown Race>
/ caption = "Do you identify as:"
/ options = ("American Indian or Alaska Native", "Asian", "Black or African American", "Hispanic, Latina/Latino or Spanish origin", "Native Hawaiian or Other Pacific Islander", "White", "Some other race or origin")
/ fontstyle = ("Calibri", 13pt, true, false, false, false, 5, 0)
</dropdown>
<expt>
/ blocks = [1=raceblock; 2=sequence(blackblock, whiteblock); 3=remainingblock; 4=disqualificationblock]
</expt>
<block raceblock>
/ trials = [1=racepage]
</block>
//your pages w/ questions for black participants go here
//skip if response was NOT black
<block blackblock>
/ skip = [dropdown.race.response != "Black or African American"]
/ trials = [1=blackpage]
</block>
//your pages w/ questions for white participants go here
//skip if response was NOT white
<block whiteblock>
/ skip = [dropdown.race.response != "White"]
/ trials = [1=whitepage]
</block>
//remaining questions identical for black and white participants go here
//skip for ineligible participants
<block remainingblock>
/ skip = [dropdown.race.response != "Black or African American" && dropdown.race.response != "White"]
/ trials = [1=remainingpage]
</block>
//disqualification message for all others
//skip for eligible participants (black or white)
<block disqualificationblock>
/ skip = [dropdown.race.response == "Black or African American" || dropdown.race.response == "White"]
/ trials = [1=disqualificationpage]
</block>
<surveypage racepage>
/ questions = [1=race]
</surveypage>
<surveypage blackpage>
/ caption = "for black participants only"
</surveypage>
<surveypage whitepage>
/ caption = "for white participants only"
</surveypage>
<surveypage remainingpage>
/ caption = "for all eligible participants (black and white)"
</surveypage>
<surveypage disqualificationpage>
/ caption = "you are not eligible to participate (neither black nor white)"
</surveypage>