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.
Schwadenfeld
3 years agoHelper I
same issue here, any solution? 🙂 thanks!