Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
the_murkle_man
Contributor II
Contributor II

Percentage of SubTotal

Hi Guys,

I have recently been stumped trying to figure out how to create a % of a sub total.

For example I have a pivot table showing something like this:

County     City     Count of Sales

UK           London          10

UK           Liverpool        15

UK           Manchester    75

France     Paris              90

France     Nice               10         

So for the UK I would like to have another column saying 10% for London, 75% for Manchester etc.

I have been trying to create this in Set Analysis using the Aggr function, however it always uses the total of the entire pivot table, not the sub totals!

Any support would be massively appreciated!

Regards

1 Solution

Accepted Solutions
ThornOfCrowns
Specialist II
Specialist II

Is this what you want?

QV_Pivot_Extra.PNG

View solution in original post

11 Replies
marcus_sommer

Have you tried it with a pivot-table and enabled partial-sums? Further you might need a total statement within your expressions, like: count(TOTAL <City> Sales)

- Marcus

the_murkle_man
Contributor II
Contributor II
Author

Yes I have, the number I want to get the percentage of is the partial sum total.

By doing what you have suggested I get 0% across the board...

I envisioned I would need to do something involving an Aggr function, before dividing that by the sales.

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try this expression

count(TOTAL <Country> Sales)

Anonymous
Not applicable

Hi,

You can try, count(<City> Sales)/count(TOTAL <Country> Sales). This is if you have Country as a dimension. Than go to the properties->Number, for the expression, choose to show as a percentage

tahirkhalil
Creator
Creator

Hi,

Try using

=sum(SalesCount)/Aggr( 

Sum ( TOTAL <County> [Count of Sales] ) 

,City,County)

Probably this is what I understand.

ThornOfCrowns
Specialist II
Specialist II

Is this what you want?

QV_Pivot_Extra.PNG

senpradip007
Specialist III
Specialist III

Have a look at this. May this help you.

the_murkle_man
Contributor II
Contributor II
Author

Hi James,

This is exactly what I wanted, thanks a lot!

Jim

ThornOfCrowns
Specialist II
Specialist II

No worries, happy to help.