Forum Discussion
shill1000
8 years agoHelper IV
KPI with row level targets
I'm trying to get my head around something and I'm not sure I'm taking the right approach. I have a table of contract names, an achievement value for each contract and a target for each specific cont...
- 8 years ago
Hi shill1000,
In that case, you just need to make a little adjustment to above measures:
Measure target = CALCULATE(SUM('KPI'[Target Value]),ALLSELECTED('KPI')) Measure Performance = CALCULATE(SUM('KPI'[SLA Performance]),ALLSELECTED('KPI'))Best regards,
Yuliana Gu
v-yulgu-msft
8 years agoMicrosoft Employee
Hi shill1000,
In that case, you just need to make a little adjustment to above measures:
Measure target = CALCULATE(SUM('KPI'[Target Value]),ALLSELECTED('KPI'))
Measure Performance = CALCULATE(SUM('KPI'[SLA Performance]),ALLSELECTED('KPI'))
Best regards,
Yuliana Gu
shill1000
8 years agoHelper IV
That did it, many thanks.