"Help with Relevant"

Hello Team,

I'm back to enjoy ODK again. I'm creating fifth successful XLSForm but I
got stuck in a situation where I need to skip to a certain question if all
the choices are ' No' or 'Don't know' in a group (table listed) of
questions.

For example,
Survey sheet:

type name appearance begin group G1 table-list select_one G1 Q1 select_one
G1 Q2 select_one G1 Q3 select_one G1 Q4 select_one G1 Q5 select_one
G1 Q6 end group date Q7 date Q20

list_name name label G1 1 Yes G1 0 No G1 99 Don't Know
The skip logic is, if all the questions (Q1-Q6) are "No" or "don't know"
then go to Q20
In all other possible conditions return to Q7

I have been thinking for awhile but haven't figured it out, could some one
help with sorting this?

Thanks in advance

Best
Joseph

Try it like this

${Q1}!= 1 and ${Q2}!= 1 and ${Q3}!= 1 and ${Q4}!= 1 and ${Q5}!= 1

Hello Team,

ยทยทยท On Tuesday, March 4, 2014 6:35:37 PM UTC+8, Joseph wrote: > > I'm back to enjoy ODK again. I'm creating fifth successful XLSForm but I > got stuck in a situation where I need to skip to a certain question if all > the choices are ' No' or 'Don't know' in a group (table listed) of > questions. > > For example, > Survey sheet: > > type name appearance begin group G1 table-list select_one G1 Q1 select_one > G1 Q2 select_one G1 Q3 select_one G1 Q4 select_one G1 Q5 select_one > G1 Q6 end group date Q7 date Q20 > > > list_name name label G1 1 Yes G1 0 No G1 99 Don't Know > The skip logic is, if all the questions (Q1-Q6) are "No" or "don't know" > then go to Q20 > In all other possible conditions return to Q7 > > I have been thinking for awhile but haven't figured it out, could some one > help with sorting this? > > Thanks in advance > > Best > Joseph >