Compare two values condition

This condition evaluates the comparison of two (field) values

⚒️ Configuration

Left-hand side value

Define the first of the two values that should be compared in Basic text mode.

The most common use case is to compare field values provided by field codes.

Right-hand side value

Define the second of the two values that should be compared in Basic text mode.

The most common use case is to compare a field values provided by field codes.

Operator

Select how to compare the two given values. Choose from one of the following options:

Option

Description

=

The first value must be equal to the second value.

!=

The first value must not be equal to the second value.

<

The first value must be less

than the second value. This is typically used for comparing numeric or date-time values.

>

The first value must be greater

than the second value. This is typically used for comparing numeric or date-time values.

<=

The first value must be less

than or equal to the second value. This is typically used for comparing numeric or date-time values.

>=

The first value must be greater

than or equal to the second value. This is typically used for comparing numeric or date-time values.

If you need to compare multiple values or construct more complex comparisons make sure to have a look at the Logical condition.


📚 Use cases and examples