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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
dhruvipanchal88
Contributor III
Contributor III

conditional formatting

Hi

I am trying to conditional formatting for top 5 values in each calculated column.

I'm using background color expression if(rank(sum([Roadway Clearance Time])) <= 5 ,RGB(183,255,255)) but not giving correct output.

Can any one suggest? I have attached table here.

Labels (1)
1 Solution

Accepted Solutions
sidhiq91
Specialist II
Specialist II

@dhruvipanchal88  Could you please use the below expression,

if(Aggr(rank(RoadwayClearanceTime),MaintenanceShed)<=5,RGB(183,255,255))

If this resolves your issue, please like and accept it as a solution.

View solution in original post

2 Replies
sidhiq91
Specialist II
Specialist II

@dhruvipanchal88  Could you please use the below expression,

if(Aggr(rank(RoadwayClearanceTime),MaintenanceShed)<=5,RGB(183,255,255))

If this resolves your issue, please like and accept it as a solution.

dhruvipanchal88
Contributor III
Contributor III
Author

It worked. Thank You @Sidhi91