Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
may be like this
sum(AgentCall)/sum(Total AgentCall)
change number format to %
Or may be this:
Sum(AgentCall)/Sum(Total <User> AgentCall)
Matt,
If that doesn't work, try totaling over your top dimension:
sum(AgentCall)/sum(Total <User> AgentCall)
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