I have a Forms process where if a field named 'Service' = A, B, C, or D it needs to be assigned to a team. If it does not equal 1 of those four, then it will be routed to a supervisor to choose an employee name from a drop-down field.
Either way though, the instance needs to end up at the same user task for processing. Since Forms does not allow you to add two different teams to a single user task, this causes some complications to the design of the process diagram. I was reading in the JavaScript Filter Expressions help file and it seems to support if statements. Is it possible to check if a field variable has a value, if yes, then assign to a team member based on DisplayName, and if no, assign based on a Team name from a different field?
This would allow for the ability if the supervisor has selected a name from the drop-down field it would assign based on DisplayName, but if he did not, then it would dynamically assign to a team based on field value.