Forum Discussion
Power Bi Pro Desktop Trouble with average in Matrix table
- 2 years ago
Hi, tyjames05
You can try the following methods.
Measure:
PPH = AVERAGEX(ALL('Table'),DIVIDE(SUM('Table'[Finished Product]),SUM('Table'[Hours Worked])))Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Here is how the table looks. Can you show me how to type out the averagex code?
Hi, tyjames05
You can try the following methods.
Average = AVERAGEX('Table',[PPH])Average = AVERAGEX('Table',[PPH])
Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- tyjames052 years agoHelper I
It gives me an error. If you look back at the original table. The PPH value at the bottom in the "Total" row should be Finished Product divided by Sum of Hours worked. We take the number of pieces produced and divide that by the number of hours worked. This gives us the operators pieces per hour metric. The PPH in the Total row now is not accurate. It should read 46.87 because 5508/117.51 is 46.872606 but we only use two decimal spots, so 46.87.
- v-zhangti2 years agoCommunity Support
Hi, tyjames05
You can try the following methods.
Measure:
PPH = AVERAGEX(ALL('Table'),DIVIDE(SUM('Table'[Finished Product]),SUM('Table'[Hours Worked])))Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- tyjames052 years agoHelper I
Very good man. It works.
- tyjames052 years agoHelper I
When I'm putting in the date to the spreadsheet, I have a column for PPH. I manually put this in. Lets say we left it out and we created a new measure to divide the finished product by total hours worked, would that then create the correct PPH in the total row at the bottom?