Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is it possible? I have a pivot table that details Month which expands to Date which then expands to Reason for Call... please see screenshot...l
I did have this originally set up as a straight table and was using the expression =sum(CallCounter) and selecting the Relative checkbox for the % column but I don't have the Relative option for a pivot table. We received a total of 149 calls on 03/08/2015... how can I get Accounts Payable to show 3.36%, Allocation - General to show 7.38% and so on?
Many thanks in advance.
Try sum(CallCounter) / sum(TOTAL CallCounter)
Try sum(CallCounter) / sum(TOTAL CallCounter)
You must compute the percentage using aggr() function
Hi
Your Expression would be:
=(Sum(CallCounter)/Sum(TOTAL CallCounter))/100
Than Go To Number Tab >
Select this expression > Fixed to 1 Decimal > Check Show in Percent Box.
Regards
Av7eN
As simple as that eh Colin? Thanks so much for that