Forum Discussion
KPI Visual
- 8 years ago
Hi ,
As per my understanding, if any of the KPI has has a red indicator i.e. value below the tqarget, the final kpi should also be shown in red.
For this i created a measure that shall verify all the other measure. In your case:
final target = IF(OR(OR([Value1]<3,[Value2]<3) ,[Value3]<3),0,1)
I used advanced cards, and used this measure in the condition field to check if the value is 0 , then show it in red.
Attaching the screenshot of it.
Hope this solves your issue.
Regards.
This worked, just as you said! :)
But i have a followup question regarding the "Advance card" visual.
How does the visual know which value to look at when calculating conditions?
I have 3 conditions directed towards the summary measure and 1 directed to the final target measure. But nowhere in the visual do you specify towards which value the condition should look?
Sorry this is messy :) Hope u understand what i dont!
In the case shared, that condition is calculated and flaged in a measure that was created i.e. final taget.
this measure is used in the condition field of the advaced card, so based on the value of the final target measure, the condition is verfied
Hope this solves your confusion.
- tex6288 years agoCommunity Champion
That i understand.
I will try to describe my concern more clearly:In the advance card i have 4 conditions:
Final target = 0 RED
Summary <1 RED
Summary <3 YELLOWSummary >3 GREEN
Take the second condition for example...
When implemented in the card you don't define which value the condition refers to, so how does it know to look at Summary and not Final target?
Br,
Johannes
- praiselyabraham8 years agoResolver II
Here the final target measure is acting as a flag ,
in the earlier scenario, it was made a 2 state flag that had either 1 or 0 value.
In this case , try to make the final target measure make it a multi level flag on the various scenarios that you have,That way you can define the mentioned case.
- tex6288 years agoCommunity Champion
Ohh, I understand.
Thank you for the assistance! :)