I have following data in excel:
Category ID
a 100-1234
a 100-12345
b 100-123456
b 110-1234
b 110-12345
c 1120-92029
c 12303-223
c 12039-10300
c 12930-20102
I would like to write a formula to calculate the number of distinct/different IDs of all categories except Category = "c" (without breakdown by category, just a total number of distinct IDs).
except Category = "c"
means what. Only count distinct for a nd b? Then what would be your output? – Harun24HRFILTER
get get all qualifying records, theUNIQUE
, thenCOUNT
– chris neilsen