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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
bharatkishore
Creator III
Creator III

Need to display color for only min and max

Hi All,

I have a dimension as day where data will Sunday,Monday,....Saturday.

I have campaign field and i have written expression as Count(Campaign)

Now i have taken a straight table and displayed as

Sunday---10

Monday--40

Tuesday--50.

Now my query is i need to display color only for max and min values. Kindly .

help me how to get

1 Solution

Accepted Solutions
3 Replies
tamilarasu
Champion
Champion

bharatkishore
Creator III
Creator III
Author

Thanks a lot..Exactly what i am looking..

sushil353
Master II
Master II

Hi,

Try to use rank function as : if(aggr(rank(count(Campaign),day)=1,green(),if(aggr(rank(count(campaign)),Day)=2,yellow(),white())

HTH