Pivot Table Source Data changing when sheet copied vba

cSciFiChick

New Member
Joined
Jul 31, 2014
Messages
42
So I have a report where the sheet is copied and it has a pivot table. But when I copy the tab the pivot table source refers back to the previous tab. It would be fine if I was working with this report because I know how to change the data source but this will be used by people that are not that familiar with Excel so I want it to be automatic. Below is the macro I have been trying to use but it does not work. The range of the data will always be on the same sheet as the pivot table C5:D15.


Sub Pivot()
Dim WS As Worksheet
Dim PT As PivotTable
For Each WS In ActiveWorkbook.Worksheets
For Each PT In WS.PivotTables
PT.PivotTableWizard SourceType:=xlDatabase, SourceData:="'" & WS.Name & "'" & "!" & WS.Range("C5:D15")
PT.RefreshTable
Next
Next
End Sub
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
This should work

Sub Pivot()
Dim WS As Worksheet
Dim PT As PivotTable
For Each WS In ThisWorkbook.Worksheets
For Each PT In WS.PivotTables
PT.ChangePivotCache ThisWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:="'" & WS.Name & "'" & "!C15:D15")
PT.RefreshTable
Next
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

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