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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Sum by distinct ID from duplicated rows

I have a non aggregated table that is transactional based on event that has duplicated ID's and Amounts similar to column a/b and I would like to have a measure to apply in my visualizations that shows the uniqe amount by order ID and then I can roll up to Vendor.   How would I write a formula to do this on the report side?  One of my attempts is:  

vsum = CALCULATE(sum('TABLE_1'[Amount]), ALLSELECTED(MAX('TABLE_1'[OrderID])))

 

Order IDVendorAmountIDVendorAmount
417306A67.80417306A67.80
417306A67.80503477B269.85
417306A67.80525849C204.53
417306A67.80   
417306A67.80   
417306A67.80   
417306A67.80   
417306A67.80   
503477B269.85   
503477B269.85   
503477B269.85   
503477B269.85   
525849C204.53   
525849C204.53   
525849C204.53   
525849C204.53   
525849C204.53   
525849C204.53   
525849C204.53   
525849C204.53   
525849C204.53   
525849C204.53   
525849C204.53   
525849C204.53   
1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Hello @Anonymous 

Give this a try, you will just have to change the name of your table in the measure.

 

Measure = 
VAR XTable = SUMMARIZE(Table1,Table1[Vendor],Table1[Order ID])
RETURN
SUMX(XTable,MAX(Table1[Amount]))

View solution in original post

2 REPLIES 2
jdbuchanan71
Super User
Super User

Hello @Anonymous 

Give this a try, you will just have to change the name of your table in the measure.

 

Measure = 
VAR XTable = SUMMARIZE(Table1,Table1[Vendor],Table1[Order ID])
RETURN
SUMX(XTable,MAX(Table1[Amount]))
Anonymous
Not applicable

Thank you @jdbuchanan71  for the quick reply, this gave me exactly what I was looking for.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.