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

:rofl:
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
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,223,237
Messages
6,170,928
Members
452,366
Latest member
TePunaBloke

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