Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
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()))