Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Sum of distinct rows

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!

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

@v-shex-msft @vanessafvg

Thanks for your help. I solved it now like this:

 

CALCULATE(DISTINCTCOUNT(ID);FILTER(TABLE;Gender=1))

 

Best,

Micha

View solution in original post

you actually dont need the filter

 

CALCULATE(DISTINCTCOUNT(ID),TABLE[Gender]=1)  should work fine





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




View solution in original post

4 REPLIES 4
v-shex-msft
Community Support
Community Support

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]))

1.PNG

 

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
Anonymous
Not applicable

@v-shex-msft @vanessafvg

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





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




vanessafvg
Super User
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





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.