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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
apoje
Helper II
Helper II

Duplicate values in multiple rows - calculation problem

Hi,

 

ERP returns me a sales dataset that for each item in the order returns a row in a dataset, which specifies quantity, id and the rest... however this row also contains the total order value. So whenever I have an order with multiple items I get the rows populated with multiple duplicates of order totals. And therefore the sales report is insanely distorted. 

 

I am a novice in Power Pivot and my only way to solve this would be to create a duplicate dataset, which deletes all duplicates on the basis of OrderId and from there use the order total. 

But I think the more elegant solution would be with measures, however I do not know how to write it. Can any of you help me with this? 

The sample screenshot of the data is below:  

duplicate-order-totals.jpg

 

Thanks!

Andraz

1 ACCEPTED SOLUTION
apoje
Helper II
Helper II

I guess I'm going to solve it for myself 🙂

 

MaxOrderAmount = MAX('Sharepoint-RAW-data-link'[OrderAmount.grossTotal])

GrossTotalOrderAmountD = SUMX(DISTINCT('Sharepoint-RAW-data-link'[Order.id]),[MaxOrderAmount])

View solution in original post

1 REPLY 1
apoje
Helper II
Helper II

I guess I'm going to solve it for myself 🙂

 

MaxOrderAmount = MAX('Sharepoint-RAW-data-link'[OrderAmount.grossTotal])

GrossTotalOrderAmountD = SUMX(DISTINCT('Sharepoint-RAW-data-link'[Order.id]),[MaxOrderAmount])

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors