2

What's the math behind this? Please explain. Thank you.

javadev
  • 688
  • 2
  • 6
  • 17
familiacarballo
  • 107
  • 1
  • 1
  • 6

1 Answers1

0

as mentioned, it's a floating-point issue so to get TRUE out of it you should do:

=IF(ROUND(10.1-10, 1)=0.1, TRUE)

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124