PrecisionCalc
xl
Precision
Get Your Numbers Right

 

xlpISEQUAL

Determines whether two numbers are equal, with up to 32,767 significant digits of precision. Returns TRUE if the numbers are equal; returns FALSE if they are not. Returns #NUM! if either input cannot be resolved to a valid number.

Syntax

xlpISEQUAL(number1,number2)

number1 Required. The first number to be compared.
number2 Required. The second number to be compared.

Remarks

Examples

Formula Description Result
=xlpISEQUAL(2,2) 2 = 2 TRUE
=xlpISEQUAL(2.1,-3.1) 2.1 = -3.1 FALSE
=xlpISEQUAL("2abc2",3) 2abc2 = 3 #NUM!
=xlpISEQUAL(A1,A2)

A1 = -0.3
A2 = "-0.3"

A1 = A2 -0.3 = -0.3 (TRUE)

See Also

xlpISNOTEQUAL
xlpISGREATER
xlpISGREATEROREQUAL
xlpISLESS
xlpISLESSOREQUAL