Forum Discussion
kgriendling
9 years agoAdvocate I
Cross-Referencing Lists
Is there a way for me to create a separate field that will calculate the sum of one table's column, with the sum of another table's column?
You can create a measure that would take the sum of a field and add it to the sum of the other field:
Measure = SUM(Table1[Field]) + SUM(Table2[Field])
1 Reply
- dkay84_PowerBIMicrosoft Employee
You can create a measure that would take the sum of a field and add it to the sum of the other field:
Measure = SUM(Table1[Field]) + SUM(Table2[Field])