Can anyone help me figure out an excel formula to do the following?
I have a table with thousands of rows with data like this:
A B C
1| 23 | May 13 | 1
2| 197 | May 13 | 0
3| 197 | Apr 13 | 1
4| 1201 | Jun 13 | 1
5| 2490 | Jun 13 | 0
6| 2490 | Apr 13 | 1
7| 6003 | Jul 13 | 0
8| 9543 | May 13 | 0
9| 9543 | May 13 | 1
10| 9543 | Jul 13 | 1
I need a formula that for each month in column B, counts the number of unique values in column A that have a ‘1’ in column C.
So using the sample data above my output would look like this:
D | E
Apr 13 | 1
May 13 | 2
Jun 13 | 1
Jul 13 | 0
Any ideas?