Operator <
Return TRUE
if the left value is lesser than the one on the right, FALSE
otherwise
Usage
Parameters
left_value |
(Required) A number, date or text to compare |
right_value |
(Required) A number, date or text to compare |
Examples
More information
If the values are of different types, such as a text and a number, this function will report an error.
This operator is case insensitive, so “A” is considered equal to “a”. Use the EXACT
function if you need case sensitivity.
Unlike Excel, this operator also runs TRIM
on the texts it receives. With Word’s formatting, it’s quite easy to accidentally
have double spaces or spaces between the quotes and the text. Using TRIM
automatically means that "hello world"
is
considered equal to " hello world "
, but not to "helloworld"
. Use the
EXACT
function if you don’t want this automated TRIM
.