I am trying to ensure a group of cells add up to one particular cell but as there are minor rounding differences I am getting errors when really the are acceptable rounding errors and there should be no error. So if I can build in a 0.1% tolerance then there will not be an error.
Wont work as the numbers in C3 to H3 are already slightly rounded. They actually connect to other sheets
Dave Baldwin
A comparison to low and high limits is Always two operations, one greater than and one less than. It has to be, there are two different numbers to check against.
=IF(K16/K17 > 1.01, "OOS", IF(K17/K16 > 1.01, "OOS", "OK"))
Put your numbers in k16 and k17 and adjust as needed
OOS = Out Of Specification, OK is within specification