In Excel 2010, Windows 7, I encounter following strange behavior of MATCH
function.
In A1
, type in 0.81
, and select A1:B1
, click Fill->Series, in step value
box enter 0.01
, then we have 0.82
in B1
.
In A2
, type in 0.82
, and in B2
, enter formula:
=MATCH(A2,A1:B1,0)
Then we would have #N/A
error, the whole thing looks like this:
0.81 0.82
0.82 #N/A
But when I hand-type 0.82
in B1
, everything works fine, is it a bug or these two number are different in some sense? I tried
TYPE(B1)=TYPE(A2) and B1=A2
They both return TRUE
, what formula can show that they are different?