I have a BP workflow that runs if a specific monitoring tag is applied to a document. The WF creates a shortcut in a supervisor's folder, then has a parallel condition with 3 waiting activities. After all three tasks are complete, the workflow removes the monitoring tag and the shortcut from the supervisor's folder.
Can I get this workflow to do this:
- If, at any stage of the game, the monitoring tag is removed:
- move past the parallel condition regardless of what has or has not been done so far,
- and complete the last two activities, which include deleting the supervisor's shortcut.
I'm thinking a Conditional Decision where one branch is the whole parallel condition setup (which works great at this point) and the second branch is what to do at any time if the monitoring tag is removed. But a conditional branch is an either/or, isn't it? How can it still move onto the second branch even if it made the decision to start the first branch? Is there a different way to do this?
Should I use another parallel condition where one of the branches is the nested parallel waiting branches and the other branch actually closes the workflow if the tag is removed even though the first branch is not finished?