Screenout in a Matrix of Single Choice

Hi,

How can I please enforce a screenout if any of the choices is equal to ‘no’ ? At the moment, it only screenout if all choices are ‘no’.

And, in the case of attention checks, how can I make so that in a single choice matrix, if one of the options is not what I expect (i.e.: not ‘Agree’), that the participant will be screened out?

Many thanks

The matrix question with the label ‘consent’ actually generates multiple data columns. (consent_1, consent_2, consent_3, consent_4 )- one for each independent option. with yes being value 1, and no being 2
You need to go to the dictionary to confirm this.

Then it’s just a logical ‘OR’ if any of the consent variables equal ‘2’

branch condition (branch if true)

($consent_1== 2) || ($consent_2== 2) ||($consent_2== 2)|| ($consent_2== 2)

The same ideas for the next question, as before, go to the dictionary to get the right data names and values.