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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

SUM RELATED

Hello,

I have 2 tables with a many to many relationship. I need to sum the costs from table 1 but filter based on the other table.
The RELATED function doesnt work for me because of the many to many relation. How can I still realize to sum it?

Thanks in advance 

2 REPLIES 2
v-chenwuz-msft
Community Support
Community Support

Hi @Anonymous 

 

if you want to create a column, please try some dax expression like the following :

Column =
CALCULATE(
    SUM( 'Table (1)'[cost] ),
    FILTER( 'Table (2)', the filter conditions )
)

 

if you want calculate values in visual, you can just put the field from table 2 in the Filters and sum() function will keep the filter.

vchenwuzmsft_0-1637028043282.png

 

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@Anonymous , You need to use relatedtable in sumx

new column in table 1 =

sumx(relatedtable(Table2), Table2[Value])

 

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.