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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Visual Cues

I have a pivot table with two dimensions. Business Units and Location. The Business Units are down the side and the Locations are across the top. Its a matrix chart. How do I show a visual cue of my expression displaying the highest value for each location in green and the lowest value for each location in red? So I want it to read the highest value in Location X will be in Green for Business Unit Y. Essentially there will be a green and red value for each location. Any help would be apprecaited. Thanks.

2 Replies
Not applicable
Author

Sounds to me you can't use Visual Cues for this. You can however use the Background Color in the Expressions. Click on the + before an expression, then select the Background Color. Now you can use an expression in the Definition field to set the colors.

You probably want to use Max() and Min() to set the colors. Colors are set using the RGB() function.

Hope this helps 🙂

prieper
Master II
Master II

You may open the small "+" below the expression and enter your conditions as background-colour, e.g.

IF(SUM(Val) = MAX(SUM(Val)), LIGHTGREEN(), IF(SUM(Val) = MIN(SUM(Val)), LIGHTRED())

HTH
Peter