GREATER (>)
The operator '>' compares two values and returns the boolean value TRUE if the left value is greater than the right value and FALSE otherwise.
Syntax
Inputs value1 - Number, date or attribute of some type of number or date. value2 - Number, date or attribute of some type of number or date.
Return type
Examples Expression | Result | Type |
---|
1 > 2 | FALSE | boolean | 1.0 > 1.0 | FALSE | boolean | DATE( 2012 , 1 , 1 ) > TODAY | FALSE | boolean | 4000 > YEAR( TODAY ) | TRUE | boolean |

|