I want to be able to do something like this, where I embed if statements under answers that check to see if certain conditions are met.
*question: Do you agree with this?
Agree
*if: sex = "Male"
{reject_message}
*quit
Disagree
*if: sex = "Female"
{reject_message}
*quit
No Opinion
{reject_message}
*quit
*save: beliefs
*throwaway
It doesn't seem like this is possible... The code runs, but none of the reject conditions are getting triggered, even though they should be. Is it possible to do this? What's the easiest way to achieve something similar?
(I'm trying to avoid three big if statements)