Forum Discussion
KPI Target Goal issue
- 7 years ago
Hi Jeff505
You should modify your measure as below in your scenario.
Measure = CALCULATE(AVERAGE(Table1[Total Opened]),ALL(Table1))
Best Regards
Maggie
Hi v-juanli-msft , I have a similar requirment and came across this solution, thank you!
Understand that "ALL" removes all filters, but any thoughts how to make this measure work with a date slicer?
Let's say I need to select september dates only, in this case average will be (162+184+204+218+177)/5=189, and the KPI visual will display red - 177 (last value in september), goal 189 (average for september)
So in other words ALL will remove filters for the KPI visual calculations, and yet apply date filter as specified by the date slicer.
Tried with ALLEXCEPT, but it won't help as we are still workign with the same Date column for which filter is not needed (KPI visual) and needed (date slicer)
Thank you!
By simply using ALLSELECTED instead of ALL 😀
Answered my own question. Please disregard the question above.