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: 
qlikviewforum
Creator II
Creator II

Change the color of text as per the value. Please help!

if the value=0 i want to show the value in BLUE,
if the value > 0 then I want to show the value in RED ,
if the value < 0 then I want to show the value in GREEN.


Please help!

1 Solution

Accepted Solutions
sivarajs
Specialist II
Specialist II

Chart Properties-> Expand the expression

You will get Text color Under expression and give your condition . Refer the image below

Condition is some thing like...If(value=0,BLUE(),if(value > 0,RED(),green()))

View solution in original post

2 Replies
sivarajs
Specialist II
Specialist II

Chart Properties-> Expand the expression

You will get Text color Under expression and give your condition . Refer the image below

Condition is some thing like...If(value=0,BLUE(),if(value > 0,RED(),green()))

qlikviewforum
Creator II
Creator II
Author

Thanks that was simple. I was searching for this option.