Advanced Conditions
You can also use mathematical operators like:
int.Parse(Fields["Amount"]) < 2
And where it is a monetary or decimal value
decimal.Parse(Fields["Amount"]) > 100.00
decimal.Parse(Fields["Amount"]) < 100.00
decimal.Parse(Fields["Amount"]) == 100.00
You might use the above for example with a payment arrangement/debt management based online form/process. Sending it to a different officer dependant upon whether they are more than a certain amount in debt.
And finally, you can compare fields with one another E.g.
Fields["BalanceThisYear"] < Fields["BalanceLastYear"]
To determine the branch in which to trigger.
Last updated
Was this helpful?