For example, I have two column of data:
Name Code
ABC 10
DEF 9
DEF 9
ABC 10
ABC 9
MNO 10
ABC 11
I want to count the number of Names when Code is 10. In the above example, it should return 2. (ABC an MNO)
I am using =SUMPRODUCT((A1:A7<>"")/COUNTIF(A1:A7,A1:A7&"")) to count the number of unique data, which would return a 3 in the above example. However, it does not take into account of the Code value.
I'd sincerely appreciate your help!
Bookmarks