Forum Discussion
MMHiggins
Aug 21, 2021Copper Contributor
COUNTIF text in another cell is unique to its column.
I am trying to count the number of persons who speak English (Column "I") but only if they are unique (Column "C"). Some persons are listed in more than one row. Excel says I am missing an opening or...
- Aug 21, 2021
In addition to array formula with FREQUENCY, regular one could be
=SUMPRODUCT( (C5:C166 <> "")*(I5:I166 = "Eng")/COUNTIFS(C5:C166,C5:C166 & "", I5:I166, I5:I166 & ""))
on Excel 365
=COUNTA(UNIQUE(FILTER(C5:C166,I5:I166 = "Eng")))
SergeiBaklan
Aug 21, 2021Diamond Contributor
In addition to array formula with FREQUENCY, regular one could be
=SUMPRODUCT( (C5:C166 <> "")*(I5:I166 = "Eng")/COUNTIFS(C5:C166,C5:C166 & "", I5:I166, I5:I166 & ""))
on Excel 365
=COUNTA(UNIQUE(FILTER(C5:C166,I5:I166 = "Eng")))
- MMHigginsAug 21, 2021Copper ContributorOnce again, MANY THANKS!
- SergeiBaklanSep 27, 2021Diamond Contributor
MMHiggins , you are welcome, glad it helped