Multiple Conditions in Relevant Column?

Is it possible to have multiple conditions accounted for in the relevant column?

I would like some questions to be displayed only when these two conditions are satisfied, if it is possible, how would I write it?

${drag_damsel_id}=‘dragon’

${anisoptera_id}!=‘’

Thanks!

Welcome back to the community, @peat! Yes, you should be able to do it by using the and operator as outlined below:

${drag_damsel_id}='dragon' and ${anisoptera_id}!=''

You should be able to learn more about the operator functions in this support article Calculate Question Type.

1 Like

Thank you! I had it in upper-case and it hadn’t worked, this is great :slight_smile:

1 Like