Forum Discussion
Resource Utilisation - Different Target Percentage
- Anonymous2 years ago
Hi snolan175 ,
I can give you an example:
If you want to show the Efficiency Percentage of Person 1, just use this DAX to create a measure:Measure = CALCULATE( MAX('Table'[Efficiency Percentage]), 'Table'[Resource] = "Person 1" )If you need to calculate other Efficiency Percentages, please explain your calculation process in detail. I can try to write DAX for you.
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi snolan175 ,
First of all, based only on the information you have provided, I cannot understand what results you need to get. It would be helpful if you could provide the complete sample data for both tables and the desired results you ultimately want to get!
Also, a gauge can only display one piece of data, so if you want all the data in your table to be displayed in gauges, you may need to create multiple gauges, unless you want to display the sum of all the Resources. Please consider using a table or matrix visual object.
Best Regards,
Dino Tao
Hi Dino,
I want to know how to set the target on a gauge or KPI chart to be the resource's efficiency percentage from the table above which is their target billable time, I have managed to calculate the actual billable time, but just want to add the target but not sure how to create a measure to show the % from the table.
- Anonymous2 years agoNot applicable
Hi snolan175 ,
I can give you an example:
If you want to show the Efficiency Percentage of Person 1, just use this DAX to create a measure:Measure = CALCULATE( MAX('Table'[Efficiency Percentage]), 'Table'[Resource] = "Person 1" )If you need to calculate other Efficiency Percentages, please explain your calculation process in detail. I can try to write DAX for you.
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- snolan1752 years agoFrequent Visitor
Thanks Dino, I ended up using the selected value function rather than an absolute:
Target Utilisation = CALCULATE(MAX(Efficiency[Efficiency Decimal]),FILTER(Resource_Card_Excel,Resource_Card_Excel[No] = SELECTEDVALUE(Resource_Card_Excel[No])))