Forum Discussion
Anonymous
6 years agoNot applicable
Calculating Technician Utilization
Hi, I want to calculate the technician utilization as formula below Utilization = (Labor hours + Travel hours) / Hours Available Hours available per month = 160 How can I fix this 160 avail...
- 6 years ago
@PBI_newuser, create a month-year column or take it from the date table
avergageX(summarize(table,table[Month-year],table[Team],table[Technician],"_1",160,"_2",sum(Table[Labor hours])+sum(Table[Travel hours])),divide(sum([_2]),sum([_1])))
amitchandak
6 years agoSuper User
@PBI_newuser, create a month-year column or take it from the date table
avergageX(summarize(table,table[Month-year],table[Team],table[Technician],"_1",160,"_2",sum(Table[Labor hours])+sum(Table[Travel hours])),divide(sum([_2]),sum([_1])))