Forum Discussion
TO COUNT CELLS WITH MULTIPLE CRITERIA WITH COUNTIF FUNCTION.
- Aug 30, 2019
You may try the SUMPRODUCT Function like this...
Assuming your numbers are in the range A1:B10, then try this
=SUMPRODUCT((A1:A10<>"")*(A1:A10<80)*(ABS(A1:A10-B1:B10)<5))
Adjust the ranges in the formula as per your requirement but don't refer the whole column in the formula as it would take a long time to calculate it.
As variant that could be
=SUMPRODUCT((A1:INDEX(A:A,COUNTA(A:A))<80)*(ABS(A1:INDEX(A:A,COUNTA(A:A))-B1:INDEX(B:B,COUNTA(A:A)))<5))
assuming your data starts from first row of the sheet.
Same with static range
=SUMPRODUCT((A1:A5<80)*(ABS(A1:A5-B1:B5)<5))
I included the criteria (A1:A10<>"") to exclude the blank cells in column A, if any, in the range A1:A10 otherwise the formula would return the wrong output.
- SergeiBaklanAug 30, 2019Diamond Contributor
yes, I skipped that intentionally using dynamic range, otherwise it won't work.
- MURALI1408Aug 30, 2019Copper Contributor
Mr.Sergei,
thanks....but I want the count of columns matching these two criteria[conditions].....with =COUNTIF(A1:A5,<80), I got the count correctbut for 2nd condition,[difference of A1 & B1 is less than "5") couldn't make.....please help - MURALI1408Aug 30, 2019Copper Contributor
Mr.Sergei,
thanks....but I want the count of columns matching these two criteria[conditions].....with =COUNTIF(A1:A5,<80), I got the count correctbut for 2nd condition,[difference of A1 & B1 is less than "5") couldn't make.....please help- SergeiBaklanAug 30, 2019Diamond Contributor
In your sample there is only one such combination and the formula gives correct result
Could you please clarify what exactly doesn't work, which result do you expect?