Comparison Operators
There are three main comparison operators:
<
(less than),
>
(greater than), and
= (equal
to). They can be used individually, or any two operators can be
combined with each other. Their general syntax is
result = expression1 operator expression2The resulting expression is True (-1),
False (0), or Null. A
Null results only if either
expression1 or
expression2 itself is
Null.
What follows is a list of all the comparison operators supported by
VBA, as well as an explanation of the condition required for the
comparison to result in True:
-
> expression1is greater than and not equal toexpression2-
< expression1less than and not equal toexpression2-
<>or>< expression1not equal toexpression2(less than or greater than)-
>=or=> expression1greater than or equal toexpression2-
<=or=< expression1less than or equal toexpression2-
= expression1equal toexpression2
Comparison operators can be used with both numeric and string
variables. However, if one expression is numeric and the other is a
string, the numeric expression will always be “less than”
the string expression. If both expression1
and expression2 are strings, the
“greatest” string is the one that is the longest. If the
strings are of equal length, the comparison is case-sensitive.
(Lowercase letters are “greater” than their uppercase
counterparts.)
The Is operator
While not strictly a comparison operator, the
Is
operator determines whether two object reference variables refer to the same ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access