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?
- 9 years ago
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])
dkay84_PowerBI
9 years agoMicrosoft 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])