Constraints on select_one questions

Can anybody help me in defining the condition for below scenario?

I have 2 question
Q1 Gender (select_one gender) (gender is, female=1, male=2)
Q2 Type (select_one benType) (benType is, Plw=1, Child >6 and <24=2 and
Child 24 to <59 =3)

I want constraint in which if a user selects male system should not allow
selecting PLW in the second question.
if (q=2 ,"PLW can't be male", "blank").

Imran,

You should use choice_filter to determine your options in select menus.
Here is an example that uses the selection of a state to filter the options:

Similar logic can be used to get your answer

ยทยทยท On Friday, July 1, 2016 at 8:12:24 PM UTC-6, imran ahmedani wrote: > > Can anybody help me in defining the condition for below scenario? > > I have 2 question > Q1 Gender (select_one gender) (gender is, female=1, male=2) > Q2 Type (select_one benType) (benType is, Plw=1, Child >6 and <24=2 and > Child 24 to <59 =3) > > I want constraint in which if a user selects male system should not allow > selecting PLW in the second question. > if (q=2 ,"PLW can't be male", "blank"). > > >