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

Pop up in Led expression ??

I have this graphic

ITS red when the value is 1 and red when the value is 0.

Can i put a pop that says "green" or "red" for example?

Thank you!

qlikview 6.png

1 Reply
marcus_sommer

I think this won't be possible but you could as workaround use a normal text-type expression which returned in a first row a char your choice and in a second/third row the text-value red/green - this will be popup by mouseover. The color from this char could you set per color-expression.

value:

= chr(9787) & chr(10) & chr(10) & if(1=1, 'red', 'green')

color:

= if(1=1, red(), green())

- Marcus