Pivot Table Help

zonemaster88

New Member
Joined
Sep 15, 2014
Messages
3
Hi, I am trying to get the average cost of items with duplicates of the same item but having different value in a pivot table. I tried looking for an answer on here and was unable to find one.

Ex:
Date Item Cost
8/5 4512 $225
8/5 4514 $425
8/5 4518 $125
8/5 4518 $225
8/5 4504 $375

A pivot table would get the average of $275 when I sort by date. However, the average I am looking for is of all the orders with 4518 combined. This would be $343.75. I understand that I could just sort this by item # but the actual data I'm working with has over 80,000 items (in-practical). Anyone know how to combine item numbers and get the average of combined like items in a pivot table?

Thanks!
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
with helper column as follows :
Date Item Costhelper
5-Aug4512225225
5-Aug4514425425
5-Aug4518125350
5-Aug4518225
5-Aug4504375375

<tbody>
</tbody>

formula in D2 is =IF(COUNTIF($B$2:B2,B2)>1,"",SUMIF($B$2:$B$6,B2,$C$2:$C$6))

Pivot would give:
Average of helper
Row LabelsTotal
4504375
4512225
4514425
4518350
Grand Total343.75

<tbody>
</tbody>

With in ∑Values 'helper' set on average.

Would that work?
Unless mistaken Calculated fields do not do to well with sum and count.
 
Upvote 0

Forum statistics

Threads
1,203,069
Messages
6,053,352
Members
444,655
Latest member
didr

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