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

Announcements
Join us at Qlik Connect 2026 in Orlando, April 13–15: Register Here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

TOTAL IN BAR CHART

How can I Show the Count as a Text on a Bar Chart. My expression is  

if((NumberYes/NumberQuestions)<0.858,(NumberYes/NumberQuestions))

I am getting the right number of Bars for example I have 36 Bars.

I wanna display the 36 as a Text box somewhere on the Bar Chart.

I have tried the Followung expression in the Presentation Tab->Text in chart and it works only if you select a Bar. Any Ideas??

if((NumberYes/NumberQuestions)<0.858,Count(Total DISTINCT location_id))

Labels (1)
11 Replies
jerem1234
Specialist II
Specialist II

Maybe:

count(distinct if(aggr((NumberYes/NumberQuestions), location_id)<$(=AVG(NumberYes/NumberQuestions))location_id))

Not applicable
Author

That works man, thnks