Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
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

How do I normalize a stacked bar chart but still show the values instead of percentages?

I created a normalized stacked bar chart, but I want to the values on data points as the raw numbers instead of a percentage. Is that possible?

I used the below expression to generate the chart.

Count({$}CSW_STATUS_Hist)/Count({$}Total <Client> CSW_STATUS_Hist)

Stacked Bar Chart.JPG

2 Replies
sunny_talwar

Try this:

Dual(Count({$}CSW_STATUS_Hist), Count({$}CSW_STATUS_Hist)/Count({$}Total <Client> CSW_STATUS_Hist))

Not applicable
Author

Thanks!