Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Bold top 5 values

Hi all,

Can anyone tell me how to bold the top 5 values in my bar chart?

Please help!!

Many Many thanks...

Matt

1 Solution

Accepted Solutions
jykang0638
Partner - Contributor III
Partner - Contributor III

Hi Matt,

I think Text Format and Rank() may help you.
Expand hidden list through click plus sign on your expression and choose Text Format.
Then write expression like this:
If(Rank(Total Sum(Val)) <= 5, '<b>')

I hope it will help you. 
Steve Kang.

View solution in original post

3 Replies
Not applicable
Author

Can anyone please help?

jykang0638
Partner - Contributor III
Partner - Contributor III

Hi Matt,

I think Text Format and Rank() may help you.
Expand hidden list through click plus sign on your expression and choose Text Format.
Then write expression like this:
If(Rank(Total Sum(Val)) <= 5, '<b>')

I hope it will help you. 
Steve Kang.

Not applicable
Author

Steve, your a legend.  Thank you.