The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi all,
I'm finding it tricky to get the DistinctCount filtered or grouped by a Category.
For example, with the below sample data, the Distinctcount ("ID") for Monday is 3, Tuesday is 1, Wednesday is 2, Thursday is 4.
I want the measure to tell me the SUM of the above, so 3 + 1 + 2 + 4 = 10
ID | Day of the Week |
1 | Monday |
1 | Monday |
2 | Monday |
3 | Monday |
2 | Tuesday |
2 | Tuesday |
2 | Wednesday |
3 | Wednesday |
3 | Thursday |
4 | Thursday |
5 | Thursday |
6 | Thursday |
Thanks for your help!
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Distinct count ID measure: =
SUMX (
VALUES ( Data[Day of the Week] ),
CALCULATE ( DISTINCTCOUNT ( Data[ID] ) )
)
Thanks so much - that's what I was looking for!
Hi,
Please check the below picture and the attached pbix file.
Distinct count ID measure: =
SUMX (
VALUES ( Data[Day of the Week] ),
CALCULATE ( DISTINCTCOUNT ( Data[ID] ) )
)
User | Count |
---|---|
24 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
11 | |
10 | |
10 | |
9 |