I have been reading up on the counting unique values threads, learning about arrays, FREQUENCY, etc.
Here is a simple version of what I need to count:
ID Issues
1203 Rights
1203 Rights and Wrongs
1204 Rights
1205 Rights and Wrongs
This count should total three, i.e. I am looking for unique values containing the word "Rights" in this example.
My actual formula, so far, with several items changed (it's more complicated than my example, and I'm looking for instances of "Rights and Ethics" even if mixed in with other text strings), is the following:
=SUM(IF(FREQUENCY(IF(October!$D$2:$D$1000="Rights and Ethics",IF(October!$A$2:$A$1000<>"",MATCH(October!$A$2:$A$1000,October!$A$2:$A$1000,0))),ROW(October!$A$2:$A$1000)-ROW(October!$A$2)+1),1))
--This is entered as an array formula, and right now will miss records containing my desired text and also other text. So perhaps I just need a modification to my 2nd IF statement?
Here is a simple version of what I need to count:
ID Issues
1203 Rights
1203 Rights and Wrongs
1204 Rights
1205 Rights and Wrongs
This count should total three, i.e. I am looking for unique values containing the word "Rights" in this example.
My actual formula, so far, with several items changed (it's more complicated than my example, and I'm looking for instances of "Rights and Ethics" even if mixed in with other text strings), is the following:
=SUM(IF(FREQUENCY(IF(October!$D$2:$D$1000="Rights and Ethics",IF(October!$A$2:$A$1000<>"",MATCH(October!$A$2:$A$1000,October!$A$2:$A$1000,0))),ROW(October!$A$2:$A$1000)-ROW(October!$A$2)+1),1))
--This is entered as an array formula, and right now will miss records containing my desired text and also other text. So perhaps I just need a modification to my 2nd IF statement?