Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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!