Routing expression example

This example shows use of both field values and responses, and AND and OR operators in creating the condition expression for each route. It also shows an "else" route that is set to true. See the Reference topic Expressions for information on creating a valid expression.

In the following example of a workflow for processing a request for reimbursement, there is one data field, Cost, and three responses in the Eval step for indicating the department: Admin, Finance, Development.

Multiple routes

Route Pay: Cost<=2000 and
(ANY(Admin) or ANY(Finance)

Route To Dev: Cost<=3000 and
ANY(Development)

Route Over limit: Always true

TIP If there is no route with an expression that evaluates to "true", the workflow will stop.