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
jareyesg
Regular Visitor

How to avoid SUM from one to many relationship tables

Hi,

 

I have a problem, I hope somebody can help me.

I have two tables:

 

Projects

IDName
1Project One
2Project Two
3Project Three

 

Invoice

IDProjectIDInvoice NumberAmount
111$100
222

$200

332$200

 

As you can see the relationship is 1:*, and there are invoices that correspond to many projects, in the example Invoice number 2. Obviosly The SUM in a Table in the report will be $500 because it is adding all the entries from the Invoice table. 

 

Is there any way to avoid it like grouping by Invoice number, because the correct SUM is only $300 because there is inly two invoices, but one of them is point to several projects.

 

Thanks in advance.

 

Thanks.

 

1 ACCEPTED SOLUTION

Thankl you for your help! It doesn't work, but finally I solve it as follows:

AmountSum =
SUMX(
    KEEPFILTERS(VALUES(Invoice[Invoice Number])),
    CALCULATE(MAX(Invoice[Amount]))
)

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@jareyesg , Create a measure like

sumx(summarize(Projects, Projects[ID],Invoice[Invoice Number], "_1", max(Invoice[Amount])),[_1])

 

I assume Projects and Invoice are joined

Thankl you for your help! It doesn't work, but finally I solve it as follows:

AmountSum =
SUMX(
    KEEPFILTERS(VALUES(Invoice[Invoice Number])),
    CALCULATE(MAX(Invoice[Amount]))
)
pranit828
Community Champion
Community Champion

Hi @jareyesg 

 

You can create a reference table and group the table based on invoice to show max of invoce.

Power Query Editor --> Transform --> Group By

pranit828_0-1597299682380.png

 

 

 

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

Regards,
Pranit





PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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