Inequality operator <>
The inequality operator <>
returns true if its operands aren’t equal, false otherwise.
Remarks
Operands must be of the same type.
The null argument values produce a null result. To test for null, use the IsNull function instead.
Examples
7 <> 5
returns true.5 <> 5
returns false.Days(9) <> Days(3)
returns true."ab" <> "ba"
returns true.#2013-09-01# <> #2013-01-01#
returns true.