I have a form for housing applicants. I ask them, in a multiple choice question, which state benefits they receive. Then I’d like to be able to ask them how much they receive for each of the benefits that they have ticked and whether the amounts they have enter are weekly or monthly (I suppose I could stipulate that they enter either weekly or monthly). So this question should ideally list just the ticked benefits and have a text box against each to enter the amount and a drop down against each to indicate either weekly or monthly. Then I’d like to calculate the total amount of benefits, but I think that’s probably the easy bit.
Answered
Benefit calculation
Best answer by john.desborough
- assuming that they select the benefit on q1:
- if q1 = 1 then go to q2 (assumed follow up for selecting benefit 1)
- if q1 = 2 then go to q3 (.. for selecting benefit 2)
- etc..
- if q1=10 then go to q11….
- otherwise go to ending/anothe rpage
- depending on which benefit they selected first, this approach allows you to walk down the list and start the followups at the ‘earliest point’
- logic on q2 (if someone has chose benefit one and there is only this 1 follow up - if there are more put this logic on q2 or the last question in the benefit 1 series)
- if q1=2 then go to q3
- if q1=3 then go to q4
- ...
- if q1=10 then go to q11
- otherwise go to ending/another page
- note the declining number of logic rules on this one - you’ve already selected benefit 1 (this question) so now we looked at if they chose another benefit on q1 and go to that page
- on q3 (choosing benefit 2) you would have
- if q1=3 then go to ….
- 1f q1=4 then …
- ….
- if q1=10 then go to
- otherwise take a hike (kidding)
repeat this process for all of the potential benefits - when you get to q11 for someone selecting benefit 10, you would send them to the ending or another page cuz there ain't no place else to go..
this avoids the loop back and keeps you in a logical flow through the quiz
hope that helps
des
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.