March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
there are several similar cases, but all these solutions didnt work out for me. Maybe just a simple fault by me.
My data is given like this:
ID / Customer / gender (1=man, 0=woman) /
123 ABC 1
123 ABC 1
124 ABD 0
125 ABE 1
123 ABC 1
126 ABF 0
I want to summarize the values given in gender but only for distinct rows.
In this case: 123 should not summarized as 3 - correct would be 1
My suggestion: SUMX(DISTINCT(ID);SUM(GENDER))
Thanks for your help!
Solved! Go to Solution.
Thanks for your help. I solved it now like this:
CALCULATE(DISTINCTCOUNT(ID);FILTER(TABLE;Gender=1))
Best,
Micha
you actually dont need the filter
CALCULATE(DISTINCTCOUNT(ID),TABLE[Gender]=1) should work fine
Proud to be a Super User!
Hi @Anonymous,
You can use countx and distinct function to achieve your requirement.
Measure:
Distinct=COUNTX(DISTINCT(ALL(Table1)),[Gender]))
Sample:
Table 2 = SUMMARIZE('Table1',[Gender],"Count",COUNTX(DISTINCT(Table1),[Gender]))
Regards,
Xiaoxin Sheng
Thanks for your help. I solved it now like this:
CALCULATE(DISTINCTCOUNT(ID);FILTER(TABLE;Gender=1))
Best,
Micha
you actually dont need the filter
CALCULATE(DISTINCTCOUNT(ID),TABLE[Gender]=1) should work fine
Proud to be a Super User!
@Anonymous
cases = distinctcount(id)
if you put your gender on your visual then it should sum up the distinct cases
i.e based on your data
Gender No of Cases
1 2
0 2
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |