Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

100% stacked bar chart

Hi guys, this should be easy oneI have seen this is a relatively common question though I am struggling to make my bar chart 100% stacked and wonder if you can help.  This is my desired chart output

My dimensions are

User

statusdescription

and measure is

sum(AgentCall)

and its working as a stacked chart, but I cant figure out how to make it 100% so I can compare user to user

Thanks guys

1 Solution

Accepted Solutions
sunny_talwar

Or may be this:

Sum(AgentCall)/Sum(Total <User> AgentCall)

View solution in original post

4 Replies
arulsettu
Master III
Master III

may be like this

sum(AgentCall)/sum(Total AgentCall)


change number format to %

sunny_talwar

Or may be this:

Sum(AgentCall)/Sum(Total <User> AgentCall)

mgranillo
Specialist
Specialist

Matt,

If that doesn't work, try totaling over your top dimension:

sum(AgentCall)/sum(Total <User> AgentCall)

Anonymous
Not applicable
Author

Thank you guys, Sunny T and Michaels answer worked for me (sorry it only seems to let me mark one as a correct answer)

I almost had it though the closest I got was

Sum(AgentCall)/Sum(Total <statusdescription> AgentCall)


Instead of

Sum(AgentCall)/Sum(Total <User> AgentCall)



Thanks again