Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Distinct Sum by

Hello Everyone, 

 

I have a report that I am trying to sum invoice totals by the distinct invoice number for that particular purchase order and supplier.  For some reason I am unable to get the correct answer.  Below is some sample data and what I expect the output to look like. 

 

I tried using the following formula but it is not working as I thought it would - 

CALCULATE(SUM('Source Data'[ Invoice Total]), DISTINCT('Source Data'[ Inv Number]))
 
 

 

Any help would be reatly appreaciated. I am a Power BI newbie so I am not 100% how to move forward from here.
 
 
 
 

Thanks!

 

  • Anonymous try this measure

     

    Distinct Sum = 
    SUMX ( VALUES ( Table[Invoice Number] ), CALCULATE ( MAX ( Table[Invoice Amount] ) ) )

     

    Check my latest blog post Year-2020, Pandemic, Power BI and Beyond to get a summary of my favourite Power BI feature releases in 2020

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

2 Replies

  • Anonymous try this measure

     

    Distinct Sum = 
    SUMX ( VALUES ( Table[Invoice Number] ), CALCULATE ( MAX ( Table[Invoice Amount] ) ) )

     

    Check my latest blog post Year-2020, Pandemic, Power BI and Beyond to get a summary of my favourite Power BI feature releases in 2020

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi parry2k,

     

    Thank you so much!! This seems to be working exactly how I envisioned in my head.  

     

    Thank you!