Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am new to qlikview......
I made a simple chart showing number of critical, high, medium and low Incidents(Dimension: Priority).
Expression is: Count(Incidents)
I like to have BAR Graph always using same colors, say: Red for Critical,Orange for High.and Green for Medium,etc....
I have used the Expression like,if(Priority = "Critical", Red()),But it changed only one color.
How to assign a color to many Dimension's value ?
Could any one please help me to work on the right approach towards this issue ?
Hi,
use like this
if(Priority = "Critical", Red(),if(Priority = "High", Orange(),if(Priority = "Medium", Green())))))
and use it as calculated dimension...
HTH
André Gomes