Set all data option for all Pivot Tables in Workbook to "None" from "Automatic"

pliskers

Active Member
Joined
Sep 26, 2002
Messages
461
Office Version
  1. 2016
Platform
  1. Windows
Rather than do them one at a time, I'd love to have some VBA that would run through all tabs of a workbook and, for each pivot table, change the data option to "None" instead of "Automatic" so that unused items are not retained in the cache, and then refresh the pivot table.

Is this possible in a single piece of code?
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Try this:

VBA Code:
Sub Refresh_All_Pivots()
   Dim pc As PivotCache

   For Each pc In ActiveWorkbook.PivotCaches
         pc.MissingItemsLimit = xlMissingItemsNone
         pc.Refresh

   Next pc

End Sub
 
Upvote 0
Solution
Try this:

VBA Code:
Sub Refresh_All_Pivots()
   Dim pc As PivotCache

   For Each pc In ActiveWorkbook.PivotCaches
         pc.MissingItemsLimit = xlMissingItemsNone
         pc.Refresh

   Next pc

End Sub
Perfect, thank you!
 
Upvote 0

Forum statistics

Threads
1,215,523
Messages
6,125,317
Members
449,218
Latest member
Excel Master

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