Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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()))