Returns TRUE if two specified values are equal and FALSE otherwise.
Sample Usage
EQ(5,10)
EQ(A4, A5)
Syntax
EQ(value1, value2)
- value1 - The first value.
- value2 - The second value to test against value1 for equality.
Examples
EQ(5,10) evaluates to FALSE.
EQ(A4, A5) evaluates to TRUE if the values in A4 and A5 are equal. It evaluates to FALSE if the values in A4 and A5 are not equal.