Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

highlight min/max values in straight table

Hi all,

I want to highlight min/max values in a straight table for each column.

how can I do it?

Thanks,

Boris

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try a background color expression attribute (on expression tab, open the attributes by clicking on the plus sign next to the expression label), something like

if(rank( EXPRESSION) = 1, lightgreen(),

if(rank( -EXPRESSION) = 1, lightred()

)

View solution in original post

3 Replies
swuehl
MVP
MVP

Try a background color expression attribute (on expression tab, open the attributes by clicking on the plus sign next to the expression label), something like

if(rank( EXPRESSION) = 1, lightgreen(),

if(rank( -EXPRESSION) = 1, lightred()

)

babitaku
Contributor III
Contributor III

For Maximum value, results are coming right but to highlight minimum results are not coming.

I am using below expression:

If(rank(Total Salary)=1,Green(), ---Correct
If(rank(-Total Salary)=1,Yellow())) ---Not Correct

 

 

Any Help would be appreciated!

Babita

Majed
Contributor III
Contributor III

I prefer using a simpler way

if (rank (column(1)) =1, Green()
,if (rank (-column(1)) =1, red()
))

where column(n) is the number of the column, counting measures only.