1.Count of All "RESLOVED" or "CLOSED" item from column B for 'A' item from column A
2.Count of All "RESLOVED" or "CLOSED" item from column B for 'B' item from column A
3.Count of All "RESLOVED" or "CLOSED" item from column B for 'C' item from column A
For all three equations, use this formula, but change the ="A" to ="B" and ="C" for #2 and #3:
=SUMPRODUCT(--($A$1:$A$40="A")*(--($B$1:$B$40="RESOLVED")+(--($B$1:$B$40="CLOSE"))))
Also, adjust your ranges as necessary. My example used rows 1 through 40. And notice I used "CLOSE", not "CLOSED", since none of your example data said "CLOSED".
Bookmarks