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

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.

Forum statistics

Threads
1,214,889
Messages
6,122,097
Members
449,065
Latest member
albertocarrillom

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