I am trying to count the number of occurences in a range based on 2 criteria. The first criteria is based on Text, the second criteria is based on 2 cells in the repsective row of a range. I cannot get the count to work - it counts incorrectly.
Example....
COL A COL B COL C
ROW 1 Eggs 2 3
ROW 2 Eggs 3 1
ROW 3 Eggs 4 9
ROW 4 Eggs 1 2
ROW 5 Bacon 2 1
ROW 6 Eggs 4 1
The formula being applied is:
=COUNTIFS($A$1:$A$6,"Eggs",$B$2:$B$6,">"&$C$2:$C$6)
It doesnt work correctly......
I would expect the result to be a count of 2, as there are 2 occurences of Eggs where column B is greater than column C