Help with And and lookup formula

somdai

New Member
Joined
Oct 2, 2012
Messages
8
:confused::confused:
I have 3 columns of data.
My criteria is this;
if there is a number in column A that is within +/-10 of a value in cell in the same column A AND
if there is a number in column B that is within +/-10 of a value in cell in the same column B AND
if there is a number in column C that is within +/-10 of a value in cell in the same column C

THEN
RETURN
TRUE

For example
Column A Column B Column C Result
378 53 45 FALSE
383 38 30 FALSE
379 0 52 TRUE
379 0 50 TRUE

:ROFLMAO:
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Code:
=countifs(a:a,">="&a1-10,a:a,"<="&a1+10,b:b,">="&b1-10,b:b,"<="&b1+10,c:c,">="&c1-10,c:c,"<="&c1+10)>1
 
Upvote 0

Forum statistics

Threads
1,215,471
Messages
6,125,000
Members
449,202
Latest member
Pertotal

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