Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
daisy1438
Contributor III
Contributor III

color code expresion for dimenstion?

Hi

I have field A1Control.uisng this A1control field as a dimension. in that dimension having  Ineffective. Needs Improvement and Effective.

in chart effective gray color and need improvement amber color and ineffective red color.

what is the expression in color tab for getting above requirement.

Thanks.

2 Replies
justinphamvn
Creator II
Creator II

Hi,

You can use Color by Dimension value

color.png

Hope this helps,

Justin.

Ivan_Bozov
Luminary
Luminary

Try this:

IF(A1Control='Ineffective', RED(),

IF(A1Control='Needs Improvement', RGB(255,128,0),

LIGHTGRAY()))

vizmind.eu