How to Use EQ in Google Sheets in 2020?

EQReturns “TRUE” if two specified values are equal and “FALSE” otherwise. Equivalent to the “=” operator.

Sample Usage

EQ(A2,A3)

EQ(2,3)

Syntax

EQ(value1, value2)

value1 – The first value.

value2 – The value to test against value1 for equality.

See Also

NE: Returns “TRUE” if two specified values are not equal and “FALSE” otherwise. Equivalent to the “<>” operator.

LTE: Returns `TRUE` if the first argument is less than or equal to the second, and `FALSE` otherwise. Equivalent to the `<=` operator. LT: Returns `TRUE` if the first argument is strictly less than the second, and `FALSE` otherwise. Equivalent to the `<` operator. GTE: Returns `TRUE` if the first argument is greater than or equal to the second, and `FALSE` otherwise. Equivalent to the `>=` operator.

GT: Returns `TRUE` if the first argument is strictly greater than the second, and `FALSE` otherwise. Equivalent to the `>` operator.

Examples