This function returns TRUE if the number is even.
IsEven([Number])
Where:
Number is a number or a reference to a number to be checked.
If the number is even then the IsEven function will return TRUE.
If the number is odd then the IsEven function will return FALSE.
Rule | Meaning |
|---|---|
| IsEven(OrderNumberTextBoxReturn) | Checks the return value of the OrderNumberTextBox and if it is an even number, the IsEven function will return TRUE. |
OrderNumberTextBoxReturn Value | Result of the IsEven function |
|---|---|
| 21 | FALSE |
| 24 | TRUE |