Operators

isn't greater than

Supported By

Syntax

expression isn't greater than expression

Description

The isn't greater than operator compares the two given values. If the first value is less than or equal to the second, the isn't greater than operator evaluates to true. If the first value is greater than the second, the isn't greater than operator evaluates to false.

If both given values are integers or numbers, the values will be compared numerically. If both given values are dates, the values will be compared chronologically. Otherwise, the values will be compared as strings.

Note

String comparison is case-insensitive. For case-sensitive comparison, use the csstrcmp function.

Synonyms

is not after, is not bigger than, is not greater than, is not more than, isn't after, isn't bigger than, isn't more than, <=, =<,

See Also

<, lt, le, between, decreasing, descending, strcmp, csstrcmp