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: 
twanqlik
Creator II
Creator II

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.