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
Hi akwang,
Create a calculated column with Divide function.
Production Efficiency % = DIVIDE(Table1[Total KG/h Actual],Table1[Total KG/h Standard],0)
Then Change the Format to Percentage which under modeling tab
regards,
Siva
akwang
8 years agoAdvocate II
Hi Ihave the data in two separate tables. One with the actual prod and the other with the Standard for Line 1,2,3.
How would i calculate that?