EQUALS (or EQ)
Checks whether the two values are equal, and returns 1 if true and 0 if false.
Syntax: EQUALS(
value_1
,
value_2
)
Example: EQUALS ( 1 , 2 )
Output: 0
Example: EQUALS ( -2.5 , -2.5 )
Output: 1
Last updated
Was this helpful?
Checks whether the two values are equal, and returns 1 if true and 0 if false.
Syntax: EQUALS(
value_1
,
value_2
)
Example: EQUALS ( 1 , 2 )
Output: 0
Example: EQUALS ( -2.5 , -2.5 )
Output: 1
Last updated
Was this helpful?