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 ,
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.
Thanks Dino, I ended up using the selected value function rather than an absolute: