Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear all,
Could you please give me a hand on this?
I am trying to build a straight table on Qlikview, and one of the Expressions I created is a result in a traffic light format.
The demand is to have different lower and upper bounds based on different regions and KPIs.
Since now, Thank you very much
you should set the lower bound for each traffic light chart then I think you can use from if statement.
if(territory='USA',1,if(territory='Europe',2)
then you should set the lower bound for two segment to 0 and 2.
please see the attachment.
you should set the lower bound for each traffic light chart then I think you can use from if statement.
if(territory='USA',1,if(territory='Europe',2)
then you should set the lower bound for two segment to 0 and 2.
please see the attachment.
Thank you!
Was not exactly like this but open my mind for achieving the solution.
Follow what I did.
If(Avg({$<Territory={'A'},KPI={'1'}>}([Result]))>0,If(Avg({$<Territory={'A'},KPI={'1'}>}([Result]))<0.3,1,2)) &
If(Avg({$<Territory={'B},KPI={'2'}>}([Result]))>0,If(Avg({$<Territory={'B'},KPI={'2'}>}([Result]))<0.8,1,2)) &
If(Avg({$<Territory={'C'},KPI={'3'}>}([Result]))>0,If(Avg({$<Territory={'C'},KPI={'3'}>}([Result]))<1.3,1,2))
THANKS