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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
carlosban
Contributor
Contributor

Property table box

Property table box

Good, I require the text to be RED (Inoperative) and BLUE (Operative)

Thank you.

Property table box.JPG

1 Reply
BalaBhaskar_Qlik

By Using of Table box, Mostly you won't able to get Text color change based on value. You better use Straight table to achieve this.

Or try like this:

You can achieve the same by adding all fields as dimensions, adding one expression, hiding that expression. Then use a formula to set the color. You can use a script:

Load *, Evaluate(Color & '()') as Color2;

LOAD * INLINE

[

    Color, Text

    Green, ABC

    Blue, DEF

    Yellow, GHI

];

Use the Color2 field in your dimension / expression background or text color, as is, to set the color.