I have this values in this cells:
I7: 100000
I8: -99500.34
I9: -103
I22:
=ROUND(SUM(I7:I21);2)
J5: 396.66
K22:
=IF(J5=I22;"OK";"NO")
Format of all cells are numeric with two decimals.
In this case, the K22 cell shows OK, it is correct because the cells of the comparasion have the same value.
However, if in the cell I22 I don't use ROUND, then it doesn't work:
- I22:
=SUMA(I7:I21)
In this case, K22 shows "NO".
Why is the result "NO"?
I have realized that if I don't use ROUND but I use another values in the cells, it works.
This case works.
I7: 100000
I8: 10
I9: 10
I22:
=SUM(I7:I21)
J5: 100020
K22:
=IF(J5=I22;"OK";"NO")
Why it doesn't work in the case in which it fails?
Thanks.