I have a form that has a collection. When needed, the process loops back to the form for additional authorization.
Here is my loop.
Here is the collection.
When the first person fills it out, the process works fine. I used the "Is additional authorization required?" response to assist me in looping the process back. If the answer is yes, a second user will receive the form to complete another row in the collection.
Once the second user submits the form, I run into a problem. If the answer is the same, it works. If the answer is not the same, the process is having trouble determining which route to take. The variable is maintaining both variables and causing the process to suspend.
I tried making a field (called Routing decision) outside of the collection that would update with the last value (using formulas), but I cannot get that to work either. I've tried indexing and rows, but still nothing. Right now, I have two formulas below which will pull both values, bit I can't get it to pull the field info from last row in the collection.
=IF(SubmitApproveInfo.Additional_authorization_required="Yes","Yes","No")
=IF(SubmitApproveInfo.Additional_authorization_required<>"",SubmitApproveInfo.Additional_authorization_required,)
When I enter yes in the first set and No in the second set, I get "Yes,No".
I've done similar form before, but none with collections.
Any ideas? I'm not set on doing this any particualr way, so feel free to think outside the box. Keep in mind that I am not a skilled coder, so I would prefer to do it wilth formulas if possible, but I have worked with code with detailed instructions.