Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

colour background

Only background colour when data is defferent(<>) in 2 colums of a table, not when one of it is null. how i can give it in background colour ??

Labels (1)
1 Solution

Accepted Solutions
maxgro
MVP
MVP

try with

if(not IsNull(Column(3)) and not IsNull(Column(2)) and Column(2)<>Column(3), green())

you can replace column(n) with the expression of the column

View solution in original post

1 Reply
maxgro
MVP
MVP

try with

if(not IsNull(Column(3)) and not IsNull(Column(2)) and Column(2)<>Column(3), green())

you can replace column(n) with the expression of the column