Forum Discussion
Anonymous
5 years agoNot applicable
Calculating Employee Productivity
Dear community members, Need your expert help in the following situation. I have three tables: Hours, Employee, and Project. The Hours table contains the hours details by each employee for a...
Tanushree_Kapse
Impactful Individual
5 years agoHi Anonymous ,
use these measures:
Productive Hours = CALCULATE(SUM('Employee Hours'[Hours]), FILTER(Table_name, Task <> "Task 3" || Task <> "Task 19" || Task <> "Task 44"))
Effective Base Hours =CALCULATE(SUM(Employee [Base Hours]), FILTER(Table_name, Task <> "Task 3" || Task <> "Task 19" || Task <> "Task 44"))
Utilization %= DIVIDE([Productive Hours],[Effective Base Hours]) .....format this to percentage.
I hope this helps!
Mark this as a solution if I answered your question. Kudos are always appreciated!
Thanks.