- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Count values that are in two categories
Hi,
I have a table with 3 columns: an ID, an User ID and a category. I am trying to get the number of users, that have both categories.
For instance:
ID | ID_user | category |
1 | 1 | A |
2 | 2 | A |
3 | 3 | B |
4 | 1 | B |
5 | 2 | C |
6 | 3 | D |
7 | 4 | A |
I want the measure to return 1 when it counts the Users that have the category A and B (in this example only user 1 fullfils that condidtion).
So im looking for somtehing like:
Measure = Calculate(
DistinctCount('table'[ID_User]),
'table'[Category] = "A" && 'table'[Category] = "B"
)
but this obviusly does not work, and I can't find a solution.
I hope I could provide enough information, if not please let me know. Your help would be very appreciated!
Best regards
Doerka
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Doerka ,
Here's my solution.
Create the first measure to get the count of category which is A or B and it is grouped by [ID_user.]
CountCategory = CALCULATE(DISTINCTCOUNT('Table'[category]),FILTER(ALLSELECTED('Table'),[ID_user ]=MAX('Table'[ID_user ])&&([category]="A"||[category]="B")))
Create the second measure to get the count of ID_user.
CountID_user = CALCULATE(DISTINCTCOUNT('Table'[ID_user ]),FILTER('Table',[CountCategory]=2))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Doerka ,
Here's my solution.
Create the first measure to get the count of category which is A or B and it is grouped by [ID_user.]
CountCategory = CALCULATE(DISTINCTCOUNT('Table'[category]),FILTER(ALLSELECTED('Table'),[ID_user ]=MAX('Table'[ID_user ])&&([category]="A"||[category]="B")))
Create the second measure to get the count of ID_user.
CountID_user = CALCULATE(DISTINCTCOUNT('Table'[ID_user ]),FILTER('Table',[CountCategory]=2))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

It takes a bit of time to calculate, but it provides the correct number.
Thank you very much for taking your time and helping out @v-stephen-msft!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

you can try this
Measure =
VAR tbl=SUMMARIZE('Table','Table'[ID_user],"count",CALCULATE( countrows('Table'),FILTER('Table','Table'[category]="A" ||'Table'[category]="B")))
return COUNTROWS(FILTER(tbl,[count]=2))
pls see the attachment below
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@ryan_mayu thank you for your quick reply.
Unfortunately does not work for me yet, for I didn't properly represent my Data in the example.
The issue is, that [ID_user] will have the same category assigned to it multiple times, like this:
ID | ID_user | category |
1 | 1 | A |
2 | 2 | A |
3 | 3 | B |
4 | 1 | B |
5 | 2 | C |
6 | 3 | D |
7 | 1 | A |
8 | 2 | A |
9 | 1 | A |
The expected result for A and B should still be 1 (user 1).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

pls try this
Measure =
VAR tbl=SUMMARIZE('Table','Table'[ID_user ],'Table'[ category])
var tbl2=SUMMARIZE(tbl,'Table'[ID_user ],"count",CALCULATE( countrows('Table'),FILTER('Table','Table'[ category]="A" ||'Table'[ category]="B")))
return COUNTROWS(FILTER(tbl2,[count]=2))
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @ryan_mayu ,
the measure you suggested only counts the ID_user that appear [count]=2 times, wich happens in the provided Data once for [ID_user] = 2
ID | ID_user | category |
2 | 2 | A |
8 | 2 | A |
If I understand your code corrrectly, you tried to SUMMARIZE instances, where ID_user and category are the same, but it seems like this does not work.
You can check for yourself by changing the last row of the data to
ID | ID_user | category |
9 | 2 | A |

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
05-02-2024 04:14 AM | |||
04-23-2024 02:25 AM | |||
10-24-2024 02:16 AM | |||
08-31-2024 09:55 PM | |||
11-01-2024 09:53 AM |
User | Count |
---|---|
141 | |
112 | |
83 | |
63 | |
47 |