Forum Discussion
akwang
8 years agoAdvocate II
Line Efficiency DAX formula
Hi I need help with a formula below: This is what i want Total KG/h Actual Total KG/h Standard Production Efficiency % Line 1 240 250 96% Line 2 273 300 91% Line 3 116...
- 8 years ago
Hi SiviMani,
I fixed the problem by enabling relationships as both direction relationship.
SivaMani
8 years agoResident Rockstar
Sorry, I thought you have the values in the same table
Create a relationship between the tables based on the Line.
Then create a calculated measure,
Production Efficiency % = DIVIDE(SUM(Table1[Total KG/h Actual]),SUM(Table2[Total KG/h Standard]),0)