Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have created a KPI. which will show total number of users in an organisation. Its running on daily basis.
Now I need to show one indicator which is Up or down based on yesterday value. If value is less than yesterday means decrease show or if value is increased means, it has to show Up indicator.
Tried few community links , but everything is for Table and pivot. but i need it in Vizlib KPI or native KPI.
Any help on this
You would set the icon based on the condition.
=if(A>B,'fa-arrow-up','fa-arrow-down')
I don't know if this is feasible in the native object, but it should be trivial in the Vizlib KPI object. Just add a layer with an icon and then set the specific icon based on your two formulas.
[Edit] For the native KPI object you can use the second measure for this, e.g.
=if(A>B,'▲')
If I add Layer in Vizlib and choose Icon and enter Fa-Arrow Up.. its not showing me to enter formula to check the condition. I am getting Icon size , Number of icons,...
Also If I choose ArrowUp in Icon , how it will change for decrease condition
You would set the icon based on the condition.
=if(A>B,'fa-arrow-up','fa-arrow-down')
Great. It worked. Thanks much