I need to count names based on three different criteria. Column A lists employee names, Column B lists the month, Column C lists the year. I need to count the number of names that occur each month for every year, but each name can only be counted once. For example, I need to know how many names are listed under March, 2012, but I can only count that name if it is not used in January or February of 2012. This criteria for unique names only applies for the year, so if a name is listed only once in 2012 and 2013 then it is still unique for each respective year.
I tried the following use of "countifs", but wasn't sure how to create a code to satisfy the third criteria, which is that the name is not repeated previously in the calendar year. I feel like it shouldn't be too difficult but I can't figure it out!
I tried the following use of "countifs", but wasn't sure how to create a code to satisfy the third criteria, which is that the name is not repeated previously in the calendar year. I feel like it shouldn't be too difficult but I can't figure it out!
Code:
<code>=countifs(C:C,"2012",B:B,"Mar",A:A...????</code>