Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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)
Try this:
Dual(Count({$}CSW_STATUS_Hist), Count({$}CSW_STATUS_Hist)/Count({$}Total <Client> CSW_STATUS_Hist))
Thanks!