Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
aaron
Contributor II
Contributor II

Changing the row color in a table in Qlik Sense

I am trying to change the entire row color based on the contents of one field in the table. e.g., column ActualStart can either have the value 'Delayed' or 'On Schedule'.

I have seen several articles on changing the background for that field--I have no problem doing that. In the background color expression I enter:

if(ActualStart = 'On Schedule',White(),'#ac4d58')

It works very nicely. However, how do I change the entire row's background color for each row where ActualStart is 'Delayed'?

 

2 Replies
Qlik1_User1
Specialist
Specialist

@aaron 

Try to use this expression for each dimension and measure background color this might work.

if(ActualStart = 'On Schedule',White(),'#ac4d58')

aaron
Contributor II
Contributor II
Author

Yes. Thank you.

This will work and had implemented this already. I was hoping for a single command that would affect the entire row.