Copying from Excel to Excel

Sharkie21

Active Member
Joined
Nov 2, 2005
Messages
319
I'm trying to copy all my PT from one work book to the other without having the links just the table.

My code doesn't seem to paste anything though.
Code:
Public Sub ExportExcelChart(xlsObj As Excel.Application)

Dim Pt As PivotTable
Dim Wsht As Worksheet
On Error Resume Next
For Each Wsht In ThisWorkbook.Worksheets
For Each Pt In Wsht.PivotTables
    Pt.PivotSelect "", xlDataAndLabel
    Selection.Copy
    xlsObj.Selection.Paste
Next Pt
Next Wsht

End Sub
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Prior to the method call I have this.

Dim xlsObj As Excel.Application
Dim xlswk As Excel.Workbook
Dim xlswks As Excel.Worksheet
Set xlsObj = CreateObject("Excel.Application.9")
xlsObj.Visible = True
Set xlswk = xlsObj.Workbooks.Add
 
Upvote 0
bump.

It doesn't seem like it's copying. When I break into the code after
selection.copy I go to another app and put paste and nothing happens.
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,876
Members
449,056
Latest member
ruhulaminappu

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