The action compares the data type and value of two operands. Returns "True" if the first operand is not equal to the second operand.
Parameter | Description |
---|---|
Operand 1 | Operand 1 value. |
Operand 2 | Operand 2 value. |
Result - result of comparing two operands.
Property | Mandatory field | Description | Type | Filling example |
---|---|---|---|---|
Input parameters | ||||
Operand 1 | yes | Operand 1 value | Robin.Object | |
Operand 2 | yes | Operand 2 value | Robin.Object | |
Output parameters | ||||
Result | Result of comparing two operands | Robin.Boolean |
The action returns True if the operand data types differ.
The action returns True if the operand data values differ.
The action returns False if the operand data types and values are equal.
There is a numeric "Variable 1" with value = 7 and a string "Variable 2" with value = 7. Check the expression "Variable 1"≠"Variable 2".
Use the "Not equal to" action.
The comparison of variable values was successful, the result of the comparison is True.
There is a numeric "Variable 1" with value = 7 and a numeric "Variable 2" with value = 9. We need to check the expression "Variable 1"≠"Variable 2".
Use the "Not equal to" action.
The comparison of variable values was successful, the result of the comparison is True.
There is a string "Variable 1" with value = "Hello" and a string "Variable 2" with value = "Hello". We need to check the expression "Variable 1"≠"Variable 2".
Use the "Not equal to" action.
The comparison of variable values was successful, the result of the comparison is False.