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

HighLight in Straight Table

Hi all,

I want by default (no sélections) white() background color , if i selct firstname or lastname the colour appears on the line firstname and value.

How can I define white colour by default ?

Thanks for your help.

1 Solution

Accepted Solutions
Not applicable
Author

I modified my expression :

=If(FIRSTNAME = FIRSTNAME AND GetSelectedCount(FIRSTNAME)>=1, RGB(255, 0, 0),
If(LASTNAME = LASTNAME AND GetSelectedCount(LASTNAME)>=1, RGB(255, 0, 0),WHITE()))

View solution in original post

1 Reply
Not applicable
Author

I modified my expression :

=If(FIRSTNAME = FIRSTNAME AND GetSelectedCount(FIRSTNAME)>=1, RGB(255, 0, 0),
If(LASTNAME = LASTNAME AND GetSelectedCount(LASTNAME)>=1, RGB(255, 0, 0),WHITE()))