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
bml123
Post Patron
Post Patron

Sum of distinct values by customer and Status

I have data like shown below. I want the sum of distinct values by id and status.

IdStatusAmount
1A100
1A200
1A100
1B400
1B400
1B300

 

I have a filter in my report with status drop down containing A, B etc. 

When status A is chosen it should show the output as below

IdStatusTotal
1A300

 

when status B is chosen it should show the output as below

1B700

 

1 ACCEPTED SOLUTION

@bml123 

A simple SUM would do:

 

Total = SUM( Table[Amount])

 

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

5 REPLIES 5
Fowmy
Super User
Super User

@bml123 

Create the following measure:

Dis. Total = 
SUMX(
    DISTINCT(Table[Amount]),
    Table[Amount]
)

 

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

@Fowmy

Hi, thank you. How can we sum the values by id including all the values, not just distinct values?

@bml123 

 

Not clear, can you show me the expected result based on your sample?

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Sorry for not being clear.

Expected output for status A should be 400

Expected outout for status B should be 1100

 

it just need to add all the amounts irrespective if they are same or not.

@bml123 

A simple SUM would do:

 

Total = SUM( Table[Amount])

 

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

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.