Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
paulyeo11
Master
Master

How to change wording color to white when black ground is Red ?

Hi All

I have a Table with one color show the variance. i like the word color to be white when black ground color is red. Any idea how to do it ?

Paul

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Change Text Color Expression as below

if(PLUS = 'P' and Column(3) >0 , Black(),

If(PLUS = 'N' and Column(3) < 0 , Black(), White()))

View solution in original post

4 Replies
paulyeo11
Master
Master
Author

My QV Doc

Anonymous
Not applicable

How about using something like this for your expression's text colour expression ?

if(PLUS = 'P' and Column(3) >0 , Black(), If(PLUS = 'N' and Column(3) < 0 , lIGHTGreen(), white()))

MK_QSL
MVP
MVP

Change Text Color Expression as below

if(PLUS = 'P' and Column(3) >0 , Black(),

If(PLUS = 'N' and Column(3) < 0 , Black(), White()))

paulyeo11
Master
Master
Author

Thank Manish