Show TOC

Background documentationDynamic Expression Operators Locate this document in the navigation structure

 

Type

Function

Description

Mathematical operators

+

-

*

/

%

Addition of two numeric values

Subtraction of a numeric value

Multiplication of two numeric values

Division of two numeric values

Modulus arithmetic of two numeric values

Logical operators

AND

&&

││

OR

NOT

!

&

Logical AND of two Boolean values

Logical AND of two Boolean values

Logical OR of two Boolean values

Logical OR of two Boolean values

Logical NOT of a Boolean value

Logical NOT of a Boolean value

Concatenates two values to produce a single, continuous value, using the syntax: (string)&(string)

Comparison operators

<

<=

>

>=

==

!=

<>

Less than (any value)

Less than or equal to (any value)

Greater than (any value)

Greater than or equal to (any value)

Equal to (any value)

Not equal to (any value)

Not equal to (any value)