Forum Discussion
st-mb
7 years agoFrequent Visitor
Weighted Average from Measures
Hello, I'm trying to calculate the weighted average of a contribution score with some existing measures, but I just can't seem to get this one right. There's three work orders tables (site a ...
- 7 years ago
Hi st-mb
You may refer to below measure. If it is not your case, please share some data sample.
Measure =
SUMX (
SUMMARIZE ( Table, Table[Name] ),
[Total Work Completed] * [Contribution Percentage]
)
/ [Total Work Completed]
Regards,
Cherie
v-cherch-msft
7 years agoMicrosoft Employee
Hi st-mb
You may refer to below measure. If it is not your case, please share some data sample.
Measure =
SUMX (
SUMMARIZE ( Table, Table[Name] ),
[Total Work Completed] * [Contribution Percentage]
)
/ [Total Work Completed]
Regards,
Cherie