Supported Operators - Workflow - English - Foundation 22.1 - OnBase - Premier - external - Standard - Premier - Standard

Workflow

Platform
OnBase
Product
Workflow
Release
Foundation 22.1
License
Premier
Standard

The following operators are supported.

Operator

Action

+

Addition

-

Subtraction

/

Division

*

Multiplication

<

Less Than (returns true/false)

>

Greater Than (returns true/false)

=

Equal To (returns true/false)

<=

Less than or equal to

>=

More than or equal to

!

Flips the results. Example: !true means NOT true.

&

Conditional And

|

Conditional OR

&&

Multiple conditional And Example: “date> today && date<Today+7” would check if the date is greater than 11/24/15 AND less than 12/1/15.

||

Multiple conditional OR Example: “date> today || date<Today+7” would check if the date is greater than 11/24/15 OR less than 12/1/15.

^

Exclusive OR