Link to home
Start Free TrialLog in
Avatar of Bill Golden
Bill GoldenFlag for United States of America

asked on

Testing for values that are close, but do not have to be exact.

I have a cell with the following formula:

=IF($AI91=$C175,"Yes","No")

Unfortunately if the values are not exactly the same, alarms go off.  The values only need to be with $10.00 of each other.

How would I change the formula to accomplish this?
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

try

=IF( abs($AI91=$C175)<=10,"Yes","No")
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Bill Golden

ASKER

Again, worked great.  Thanks ++++++