Forum Discussion
Diem_Carpe
May 14, 2021Copper Contributor
Count unique text value with specific text criteria (For excel 2016 version)
Hello All, I have a case to solve the total no. of food type by respective person as shown below, find out the total no. of food type owned by "Tom" & "Jane" without duplicating the food name. ...
- 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.
HansVogelaar
May 14, 2021MVP
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.
- Diem_CarpeMay 14, 2021Copper Contributor
I have tried the formula in the excel, and the answer returns "1", is there anything i missed?
- HansVogelaarMay 14, 2021MVP
You must confirm the formula with Ctrl+Shift+Enter, otherwise it won't work as intended.
- Diem_CarpeMay 18, 2021Copper Contributor
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.