Assume I have the following table setup:
Date Product Type Supplier
12-May-2015 C XX
23-Sep-2015 B XK
12-May 2015 C XA
How can I count the number of times supplier XX
shows up for product C
in May
by using no macros or VBA?
My logic would be something like:
IF Product Type = C and Supplier = XX THEN and Month = May, THEN count.
But I am stumped on what functions to use as I understand there is no looping function in Excel without macros. I can't even use COUNTIF because I need to check IF statements first.