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: 
Not applicable

Colors Cells

Hi guys, I need to get some cels iluminated depending the row, I attached the app and an excel pic of how I need it to be.

any help would be great!!

Labels (1)
1 Solution

Accepted Solutions
Miguel_Angel_Baeyens
Support
Support

Hi Javier,

Go to the chart properties, Expression tab and expand using the [+] symbol at the left of the expression "Cantidad Incidentes", select Background color and use this expression:

If(SecondaryDimensionality() <> 0, If(ColumnNo() <= Severity_llamadas, RGB(100, 200, 50)))

SecondaryDimensionality() will prevent to color the totals column.

Hope that helps.

Miguel

View solution in original post

3 Replies
Miguel_Angel_Baeyens
Support
Support

Hi Javier,

Go to the chart properties, Expression tab and expand using the [+] symbol at the left of the expression "Cantidad Incidentes", select Background color and use this expression:

If(SecondaryDimensionality() <> 0, If(ColumnNo() <= Severity_llamadas, RGB(100, 200, 50)))

SecondaryDimensionality() will prevent to color the totals column.

Hope that helps.

Miguel

Miguel_Angel_Baeyens
Support
Support

Hi Javier,

Use this one in the expression Background Color instead the one you already have.


Regards.

Miguel

Not applicable
Author

oook, I get it now, it´s working great, thanks miguel.!!