Add new column to pivot table which calculates based on grand total

heretolearnexcel

Board Regular
Joined
Jan 22, 2019
Messages
58
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have a table of data that I turned into a pivot table. Here is an example of more or less the data I'm working with:
DateType of movementProduct A In
Product A OutUnit CostUnit CostClientSelling PriceProduct A in Stock
10/11/19A203100
10/3/19B102Client A$2585
9/23/19C5290
9/22/19B95Client B$2091
9/15/19A30470
9/13/19B124Client D$1835
9/10/19A75100
9/02/19C83Client A$2512
8/24/19A10913

<tbody>
</tbody>


I turned the data into a pivot table and ended up with this:

Type of movementSum of Product A inSum of product A out
B10
A20
B9
B12
A30
A7
A10
Grand Total6731

<tbody>
</tbody>


I would like for the pivot table to display in the Grand Total row the difference between Sum of Product A in and Sum of Product A out, such that the result in the example would be =67-31= 36. I tried adding a formula next to the 31 which, supposing Type of movement= A1, would be in cell C9 and the 31 would be in D9. But if I filter for Type of movement and more values are added, changing the size of the pivot table, then the formula in D9 will no longer subtract the values from the grand total since they will no longer be in the original cells.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
add calculated field : ='Product A In' -'Product A Out'

Oh, it worked. I had already tried that but since in every row I only have a value either in 'Product A In' or 'Product A Out' the calculated result in each row was a negative number, and I thought I wasn't getting the calculation that I wanted; but I checked out the grand total and it is correct, only that it is a negative value. All I had to do was add an ABS to the formula: =ABS('Product A In' -'Product A Out') to make the value positive.

Thanks again Sandy.
 
Upvote 0
Oh, it worked. I had already tried that but since in every row I only have a value either in 'Product A In' or 'Product A Out' the calculated result in each row was a negative number, and I thought I wasn't getting the calculation that I wanted; but I checked out the grand total and it is correct, only that it is a negative value. All I had to do was add an ABS to the formula: =ABS('Product A In' -'Product A Out') to make the value positive.

Thanks again Sandy.

I just checked and an easier solution is to simply make the formula= 'Product A Out'- 'Product A In'. But I also just realized that the reason I need a different formula than the one you suggested is that my data is different; in my data the grand total for 'Product A Out' is larger than the one for 'Product A In'. More importantly the first represents sales and the latter returns, which is why I want to subtract them in that order. The formula you suggested works perfectly for the example I gave.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,212,927
Messages
6,110,720
Members
448,294
Latest member
jmjmjmjmjmjm

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top