Forum Discussion
Count unique text value with specific text criteria (For excel 2016 version)
- May 14, 2021
In D2 confirmed with Ctrl+Shift+Enter:
=SUM(IF($A$2:$A$16=C2,1/COUNTIFS($A$2:$A$16,C2,$B$2:$B$16,$B$2:$B$16)))
Fill down.
You must confirm the formula with Ctrl+Shift+Enter, otherwise it won't work as intended.
HansVogelaar PeterBartholomew1
Further to my question, May I know if there's any way to modify the function so that it allows the formula to count the blank cell as well or ignore the rows which cannot match column A and Column B.
- HansVogelaarMay 18, 2021MVP
You write "it allows the formula to count the blank cell". Do you mean that blank counts as a food type? So for example, the count for Jane would be 3 ("Apple", "Melon", blank)?
- Diem_CarpeMay 19, 2021Copper ContributorSorry for the misleading description. the outcome shall skip counting the blank cell, e.g. Jane would be 2 ("Apple" & "Melon", but an error "#DIV/0!" was shown when i use the same formula.
- HansVogelaarMay 20, 2021MVP
In D2 confirmed with Ctrl+Shift+Enter:
=SUM(IF(($A$2:$A$16=C2)*($B$2:$B$16<>""),1/COUNTIFS($A$2:$A$16,C2,$B$2:$B$16,$B$2:$B$16)))
See the attached version.