I'd like to know if there's a way to calculate two countifs with different data and criteria in a single formula (not row by row or with pivot tables). Let the following example apply:
I have the following table: fields A, B and C for each item (ID). Table header starts in cell T1.
I'd like to know how many items have 2 or more fields (A, B, C) with a number greater than 5.
I'd create another column X and use the following formula row by row: (Example for row 2)
=COUNTIF(U2:W2;">5")
and for that new column X (with all the COUNTIF formulas) I would use another COUNTIF
=COUNTIF(X:X;">1)
Is there a way to concatenate both? (I guess with an array formula)
Thanks in advance!