Skip to main content
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

Chart question...

Another chart question I'm afraid (I will master these)

I've used the Straight Table chart option to create a chart which contains two dimensions... IndexDate and CallsReason.  The expressions are =sum(CallCounter) which gives me the number of calls and I'd like to include another which details the % of these calls.  Should I be creating a Calculated Dimension? The table below is similar to the one I've created.

Reason for CallReason 1
Header 1Header 2Header 3Header 4
Call Logged dateNo. of Calls%
01/06/201520%
01/06/2015Reason 2110%
01/06/2015Reason 380%
02/06/2015Reason 1100%
02/06/2015Reason 250%

Thanks in advance

1 Solution

Accepted Solutions
tracysmart
Creator II
Creator II

Melanie

you can add a second expression (which will be the same as the first one sum(CallCounter) and select the Relative checkbox, this should then give you the number of calls as a percentage of the total instead of the absolute number

View solution in original post

10 Replies
Anonymous
Not applicable
Author

Use a calculated dimension for % of calls. can you also please share your data?

arulsettu
Master III
Master III

add another expression

sum(CallCounter)/sum(Total CallCounter)



swuehl
MVP
MVP

Try the TOTAL qualifier:

For percentage share per Date:

=sum(CallCounter) / sum(TOTAL<IndexDate> CallCounter)

Or for total share:

=sum(CallCounter) / sum(TOTAL CallCounter)

Not applicable
Author

another expression:

%calls= sum(callcounter)/sum(Total(callcounter)

or sum(callcounter) check relative , u will get percentages.

Not applicable
Author

Hi Melanie,

It sounds more like you should add a new expression and maybe move over to a pivot table and pivor it so you get the header dim the way you liked (vertical).

Good luck!

Anonymous
Not applicable
Author

You can simply use the same expression again and tick the "relative" option

tracysmart
Creator II
Creator II

Melanie

you can add a second expression (which will be the same as the first one sum(CallCounter) and select the Relative checkbox, this should then give you the number of calls as a percentage of the total instead of the absolute number

Anonymous
Not applicable
Author

Hi

try this.

Regards.

/Giuseppe

Not applicable
Author

Thanks Tracy... the expression already existed, I just needed to check the 'Relative' box. Thanks so much for the prompt replies.