Forum Discussion
Sharksguts
7 years agoFrequent Visitor
Labour Efficiency
How can you calculate the labour efficiency from a table of labour bookings? See example data and required results below. The problem I am having is the production standard is per Job Num/Asm/Ope...
- 7 years ago
You may add the following measures.
Measure Production Std = SUMX ( SUMMARIZE ( Table1, Table1[Job Num], Table1[Asm Seq], Table1[Op Seq], Table1[Op Code] ), CALCULATE ( MAX ( Table1[Production Std] ) ) )Measure Labour Hrs = SUM ( Table1[Labour Hrs] )
Measure Efficiency = DIVIDE ( [Measure Production Std], [Measure Labour Hrs] )
v-chuncz-msft
7 years agoCommunity Support
You may add the following measures.
Measure Production Std =
SUMX (
SUMMARIZE (
Table1,
Table1[Job Num],
Table1[Asm Seq],
Table1[Op Seq],
Table1[Op Code]
),
CALCULATE ( MAX ( Table1[Production Std] ) )
)
Measure Labour Hrs = SUM ( Table1[Labour Hrs] )
Measure Efficiency = DIVIDE ( [Measure Production Std], [Measure Labour Hrs] )
Sharksguts
7 years agoFrequent Visitor
Hi Sam
Brilliant that worked perfectly thank you for your prompt help.
I'm loving Power Bi.
Regards
Richard