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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Problem with color property expression

I want to make some values in my pivot table red and bold.

I used this function in the text format property of the expression: if(left([Status Description],4)='FAIL','<B>')  --> this works!

I used this function in the text color property of the expression: if(left([Status Description],4)='FAIL',Red()) --> this doesn't work.

Does anyone know why the color property doesn't work?

1 Solution

Accepted Solutions
khadeer
Specialist
Specialist

Instead of red use

RGB(255,0,0)

View solution in original post

2 Replies
khadeer
Specialist
Specialist

Instead of red use

RGB(255,0,0)

Not applicable
Author

ok thank you very much, I learn something new every day