Is there a way to to stop processing a customer form after last question in a section of the form?
We have an issue intake form where depending on the answer to the last question in the top (common) section of the form, the requestor should go to either Section A or Section B of the form. However, once they are done with either section (A or B), we want the form to stop asking questions.
Using A and B as variables for the actual section names, there is a question at the end of the top (common) section of form
Which Section To Fill Out?
Section A
Section B
This is the skip logic I am currently using
And
If Which Section to Fill Out? [Section A] is [Selected]
Then skip to: Section A
Or
Otherwise skip to: Section B
Using the above skip logic I get the following behavior:
- If the requestor starts at Section A, once they answer the last question in Section A, the questions in Section B start being presented
- If the requestor starts at Section B, once they answer the last question in Section B, the form stops since Section B is at the end of the form
What we want is for the form to stop after the last question in section A is completed
Thank you in advance!