If statement ignoring values within a range

Woofy_McWoof_Woof

Board Regular
Joined
Oct 7, 2016
Messages
60
Office Version
  1. 365
Platform
  1. Windows
Hi, I am trying to write an If statement that ignores any value that is between -0.1 and 0.1.

For instance, in the example below the row 2 delta is 0.1 and row 3 delta is -0.1 however I want to ignore this as it is spurious. In my formula it only delivers half of the desired result and ignores the positive values, when I try and change it I then find it ignores the negative side. Any ideas how I can do it so it ignores both negative and positive between -0.1 and 0.1?

Any help would be much appreciated, thanks.

ABC
0.720.71=if((AND(A2-B2<=0.1,A2-B2<=-0.1)),A2-B2,0)
0.860.85=if((AND(A3-B3<=0.1,A3-B3<=-0.1)),A3-B3,0)
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney

Forum statistics

Threads
1,216,751
Messages
6,132,508
Members
449,730
Latest member
SeanHT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top