Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
twanqlik
Creator
Creator

Display the % and the count in a bar chart

I want to display in 1 bar chart the % and the count, the same as in the attached graph.

Is that possible in Qlikview without adding a text object above the graph?

1 Reply
johnw
Champion III
Champion III

Yes, you can make your expression something like the below, and show values on data points:

dual(the text you want to see here, your current expression for the bar height here)

So maybe something like:

dual(num(count(Something)/1000000,'#,##0')&'M
'&num(count(Something)/count(total Something),'#,##0%'),count(Something))

You won't be able to get different font sizes, though, or at least I'm not thinking of a way to do so.