Table of Contents
If you choose the Compare type in a transform process, it compares the values from a specified field with a specified value, and returns Boolean values ("true" or "false"). You can compare values by performing the following operations:
This operation returns "true" for values that are equal to the specified value, and returns "false" otherwise.
Input | Value | Output |
---|---|---|
A | A | true |
D | A | false |
This operation returns "true" for values that are less than the specified value, and returns "false" otherwise.
Input | Value | Output |
---|---|---|
A | B | true |
D | B | false |
This operation returns "true" for values that are less than or equal to the specified value, and returns "false" otherwise.
Input | Value | Output |
---|---|---|
A | D | true |
D | D | true |
This operation returns "true" for values that are more than the specified value, and returns "false" otherwise.
Input | Value | Output |
---|---|---|
A | B | false |
D | B | true |
This operation returns "true" for values that are more than or equal to the specified value, and returns "false" otherwise.
Input | Value | Output |
---|---|---|
A | A | true |
D | A | true |
This operation returns "true" for values whose next value is equal to them, and returns "false" otherwise.
Input | Output |
---|---|
A | false |
D | true |
D | false |
This operation returns "true" for values whose next value is less than them, and returns "false" otherwise.
Input | Output |
---|---|
1 | false |
4 | false |
4 | true |
3 | true |
This operation returns "true" for values whose next value is less than or equal to them, and returns "false" otherwise.
Input | Output |
---|---|
1 | false |
4 | true |
4 | true |
3 | true |
This operation returns "true" for values whose next value is more than them, and returns "false" otherwise.
Input | Output |
---|---|
1 | true |
4 | false |
4 | false |
3 | false |
This operation returns "true" for values whose next value is more than or equal to them, and returns "false" otherwise.
Input | Output |
---|---|
1 | true |
4 | true |
4 | false |
3 | false |
This operation returns "true" for values whose next value is not equal to them, and returns "false" otherwise.
Input | Output |
---|---|
A | true |
D | false |
D | true |
This operation returns "true" for values that are not equal to the specified value, and returns "false" otherwise.
Input | Value | Output |
---|---|---|
A | D | true |
D | D | false |
This operation returns "true" for values whose previous value is equal to them, and returns "false" otherwise.
Input | Output |
---|---|
A | false |
D | false |
D | true |
This operation returns "true" for values whose previous value is less than them, and returns "false" otherwise.
Input | Output |
---|---|
1 | true |
4 | true |
4 | false |
3 | false |
This operation returns "true" for values whose previous value is less than or equal to them, and returns "false" otherwise.
Input | Output |
---|---|
1 | true |
4 | true |
4 | true |
3 | false |
This operation returns "true" for values whose previous value is more than them, and returns "false" otherwise.
Input | Output |
---|---|
1 | false |
4 | false |
4 | false |
3 | true |
This operation returns "true" for values whose previous value is more than or equal to them, and returns "false" otherwise.
Input | Output |
---|---|
1 | false |
4 | false |
4 | true |
3 | true |