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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

Summing up Duplicate Rows

Hello Community, 

 

I have merged two different tables - one containing returns, and one containing shipments.   The overall output of this table is what I need, and I am aware of the duplication that is occuring.  

 

Having said that, what I am simply trying to achieve is for the total of the "replacement quantity" column to give me the correct results.   Which, in my example below, would be 1,200.     The shipped quantity column is summing up to 1,200 which is correct.  

And I am fine with having the repeated rows as we know why this is occuring, but all we need to do is to get the sum of that replacement quantity column to only count one instance per RMA Line, so the total would end up being 1,200.   Currently that column is just coming from the column in the dataset, it is not a calculated column or measure.    I have tried creating various measures but they give me wrong values.   I am fine with creating either a new column or new measure that gives me the same result as the current column shown below (with the repeated values), as long as it gives me the correct "replacement quantity" total of 1,200.    How to accomplish?

 

texmexdragon2_0-1692917574517.png

 

1 ACCEPTED SOLUTION
danextian
Super User
Super User

Hi @Anonymous ,

 

Assuming that the line should be by RMA Number and the RMA Quantity only has the same value for each line:

=
SUMX (
    SUMMARIZE (
        'Table',
        'Table'[RMA Number],
        'Table'[RMA Line],
        'Table'[Replacement Qty]
    ),
    [Replacement Qty]
)

 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

1 REPLY 1
danextian
Super User
Super User

Hi @Anonymous ,

 

Assuming that the line should be by RMA Number and the RMA Quantity only has the same value for each line:

=
SUMX (
    SUMMARIZE (
        'Table',
        'Table'[RMA Number],
        'Table'[RMA Line],
        'Table'[Replacement Qty]
    ),
    [Replacement Qty]
)

 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.