I have an excel pivot table which looks like
Date Sum of DURATION Capped Daily Total
03-Jan 9.5 8.0
04-Jan 6.0 6.0
05-Jan 10.5 8.0
06-Jan 4.5 4.5
Grand Total 30.5 8.0
As you can see, the Grand Total for Capped Daily Total is incorrect. In this example:
Date
column is added as a Row and comes from source data. It has been Grouped By: DaysSum of DURATION
is added in the Values section and comes from the source data.Capped Daily Total
is a computed field. The formula used is= MIN('DURATION', 8)
When calculating the grand total it appears that excel has computed the Grand Total and then used the formula = MIN('DURATION (HOURS)', 8)
to cap it to 8 hours. I don't want the formula to apply to the Grand Total - only to the rows. The grand total should be a simple SUM
formula.
How can I achieve this requirement in Excel?