Forum Discussion
RickardBengzon
4 years agoFrequent Visitor
SUM values in one table from another table
I have two tables. They are connected by date. And Date in table one is Unique. I want to sum the values from table2 two in a column in table one. Any tips?
- 4 years ago
Try this,
Sum of Value = var _value = CALCULATE(SUM(Table2[Value]),FILTER(ALL(Table2),Table2[Date]=MIN(Table1[Date]))) return IF(ISBLANK(_value),0,_value)Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Fowmy
Super User
4 years agoRickardBengzon
4 years agoFrequent Visitor
I don't get any result from that If I remove "CALCULATE" and only use sum I get the total sum of all value for all dates
- Fowmy4 years ago
Super User
RickardBengzon
Please try this:Total = SUMX( FILTER( Table2 , Table2[Date] = Table1[Date] ), Table2[Value] )- RickardBengzon4 years agoFrequent Visitor
Seems legit but still doesn't work. I get no values at all... Thinking if there is somethings wrong with the date-connection... But they both seeem to be the same...