Reputation: 347
I'm trying to format my pivot table values as percentages of their row totals (in my data, each quarter). However, when I select Show Values as % of Row Total, it gives each value 100%.
When I try Show Values as % of Parent Row Total, it uses the column as the total and uses the first 4 quarters of 2017 as % total of 2018, not at all what I want to do.
Here is my current pivot table
Here is how I'm trying to format the same pivot table
Upvotes: 0
Views: 4248
Reputation: 33145
I didn't type all your "types" (or whatever is in the columns), but when I summarize by % of Row Total, it works as expected.
Is yours set up differently than what I show?
Update
If your data points are all separate columns as @jeffreyweir suggests, then you can't summarize them how you want using pivot table features. You'll have to add some columns to your data
Each Pct
column is a formula:
=[@Replacement]/SUM(tbldata[@[Replacement]:[DTK]])
=[@Refund]/SUM(tbldata[@[Replacement]:[DTK]])
=[@Parts]/SUM(tbldata[@[Replacement]:[DTK]])
=[@DTK]/SUM(tbldata[@[Replacement]:[DTK]])
Then you can sum those in a pivot table.
Upvotes: 1