Forum Discussion
Anto123
7 years agoFrequent Visitor
Calculating weighted average
Need help I have both the data points in same column so not sure how to get the weighted average. In the below example, i need to find Weighted average for ASA(Seconds) based on Vol. Handled ...
v-yulgu-msft
7 years agoMicrosoft Employee
Hi Anto123,
Please refer to below formula to create a calculated column.
Weighed Average =
CALCULATE (
SUM ( Table[Value] ),
FILTER ( ALLEXCEPT ( Table, Table[Skill] ), Table[Matric] = "ASA(Seconds)" )
)
/ CALCULATE (
SUM ( Table[Value] ),
FILTER ( ALLEXCEPT ( Table, Table[Skill] ), Table[Matric] = "Vol. Handled" )
)
If it does not meet your requirement, please illustrate how to calculate "Weighted average for ASA(Seconds) based on Vol. Handled". And show us your desired result with above sample table.
Best regards,
Yuliana Gu
- Anto1237 years agoFrequent Visitor
I have attached the calculation