G
Gerard Sanchez
Hi,
IF(B853-(B854+B855)<>0,B853-(B854+B855),"")
here it with the cell values instead of cell address:
IF ( 83.80 - ( 40.45 + 43.35 ) <> 0, 83.80 - (40.45 + 43.35), "" )
--The problem is that on the condition :
IF ( 83.80 - ( 40.45 + 43.35 ) <> 0, --> Excel is giving me a TRUE result.
Shouldn't this condition produce a False result??
Excel then proceeds to do the arithmetic with a value of -1.4219E -14
The values of these 3 cells have been checked many times, and they are all
typed exactly to 2 decimal places.
Any thoughts?
IF(B853-(B854+B855)<>0,B853-(B854+B855),"")
here it with the cell values instead of cell address:
IF ( 83.80 - ( 40.45 + 43.35 ) <> 0, 83.80 - (40.45 + 43.35), "" )
--The problem is that on the condition :
IF ( 83.80 - ( 40.45 + 43.35 ) <> 0, --> Excel is giving me a TRUE result.
Shouldn't this condition produce a False result??
Excel then proceeds to do the arithmetic with a value of -1.4219E -14
The values of these 3 cells have been checked many times, and they are all
typed exactly to 2 decimal places.
Any thoughts?