Forum Discussion
Anonymous
4 years agoNot 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 man...
v-chenwuz-msft
4 years agoCommunity 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.
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.