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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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