Equality operator =
The equality operator =
returns true if its operands are 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 false.5 = 5
returns true.Days(3) = Days(3)
returns true."ab" = "ba"
returns false.#2013-09-01# = #2013-01-01#
returns false.