Need help with VBA Error

sparkytech

Board Regular
Joined
Mar 6, 2018
Messages
96
Office Version
  1. 365
  2. 2019
I have the code below, and get a Run-time error '1004' "PasteSpecial method of Range class failed" at:
VBA Code:
DestWkb.Sheets(1).Cells(1, 1).PasteSpecial

The original sheet has an "Export" button which runs this macro, and exports to another workbook. I didn't write this code, but modified both workbooks structure. Workbook 1 row 5 and down used to export to "Export" workbook, starting at row 1 and down. Now it exports the same table starting at row 5, but is supposed to paste at row 5 on the export workbook. Any ideas why this error?

VBA Code:
Sub ExportCleanExcel(control As IRibbonControl)
'Exports the information in the master sheet to a chosen excel file; will just move
'the data without macros or other extra features

Dim FileToOpen As Variant
Dim DestWkb As Workbook
Dim MasBotRow As Long
Dim MasLasCol As Long

'Turn off screen updates to improve performance
Application.ScreenUpdating = False

'Allows user to select a file to export to using the traditional open file window
FileToOpen = Application.GetOpenFilename("All Excel Files (*.xls?), *.xls?", , "Please export file")

'If the user selects cancel when chosing a file to open FileToOpen is set to FALSE
'Using this we can check if a file was actually selected before continuing
If FileToOpen <> False Then
'Find the bottom row and last column of the table on the master sheet

MasBotRow = Sheet1.Cells.Find(What:="*", After:=Range("A1"), LookAt:=xlPart, LookIn:=xlFormulas, SearchOrder:=xlByRows, SearchDirection:=xlPrevious, MatchCase:=False).Row
MasLasCol = Sheet1.Cells.Find(What:="*", After:=Range("A1"), LookAt:=xlPart, LookIn:=xlFormulas, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious, MatchCase:=False).Column

'Copies the entire table from the master sheet
Sheet1.Range(Cells(1, 1), Cells(MasBotRow, MasLasCol)).Copy

'Open the file that was selected and then set that workbook as DestWkb
Set DestWkb = Application.Workbooks.Open(FileToOpen)

'Pastes the table into the destination file in the A1 cell of the first sheet
DestWkb.Sheets(1).Cells(1, 1).PasteSpecial

'Turn off alerts to avoid clipboard notices when closing the file
Application.DisplayAlerts = False

'Close the data file
DestWkb.Close True

'Turn back on alerts after closing the file
Application.DisplayAlerts = True
End If

Application.CutCopyMode = False
Range("A4").Select ' btn set cursor location to cell A4

'Turn back on screen updates
Application.ScreenUpdating = True

End Sub
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
you have to be more specific, how do you want to paste it ? Just the values, the formulas, ....
see XlPasteType enumeration (Excel)

so try for example
DestWkb.Sheets(1).Cells(1, 1).PasteSpecial xlpasteall
 
Upvote 0
you have to be more specific, how do you want to paste it ? Just the values, the formulas, ....
see XlPasteType enumeration (Excel)

so try for example
DestWkb.Sheets(1).Cells(1, 1).PasteSpecial xlpasteall
Should only copy values, copying from row 5 down and pasting row 5 down (I realize the Cells 1,1 needs to be changed). The way the code is currently written (with only PasteSpecial) was working at some point recently. I'm not sure what changed to make it fail?
 
Upvote 0
okay, that argument is optional, as i read the instructions.
So it has to do with the range.

* are you sure the 1st sheet is a worksheet and not a chart ?
modify DestWkb.workSheets(1).Cells(1, 1).PasteSpecial

* is that sheet protected against changes ?
Open it manually and copy&paste it yourself. Any problems ?
 
Upvote 0
What happens if you move the code around a bit so the workbook is opened, then the range is copied and pasted?
VBA Code:
'Open the file that was selected and then set that workbook as DestWkb
Set DestWkb = Application.Workbooks.Open(FileToOpen)

'Copies the entire table from the master sheet
Sheet1.Cells(1,1).Resize(MasBotRow, MasLasCol).Copy

'Pastes the table into the destination file in the A1 cell of the first sheet
DestWkb.Sheets(1).Cells(1, 1).PasteSpecial xlPasteValues
 
Upvote 0
isn't it "thisworkbook.sheet1.cells(1,1)...." otherwise you're in the wrong workbook ?
 
Upvote 0
No, ThisWorkbook.Sheet1, will give you a compile error - Method or data member not found.

The object Sheet1 will refer to the worksheet with the codename Sheet1 in the same workbook the code is in.
 
Upvote 0
Yes ? It felt like it would refer to the active workbook. Sorry, my mistake.
 
Upvote 0
What happens if you move the code around a bit so the workbook is opened, then the range is copied and pasted?
VBA Code:
'Open the file that was selected and then set that workbook as DestWkb
Set DestWkb = Application.Workbooks.Open(FileToOpen)

'Copies the entire table from the master sheet
Sheet1.Cells(1,1).Resize(MasBotRow, MasLasCol).Copy

'Pastes the table into the destination file in the A1 cell of the first sheet
DestWkb.Sheets(1).Cells(1, 1).PasteSpecial xlPasteValues
I just moved the code as suggested, but the same error pops up.
 
Upvote 0
okay, that argument is optional, as i read the instructions.
So it has to do with the range.

* are you sure the 1st sheet is a worksheet and not a chart ?
modify DestWkb.workSheets(1).Cells(1, 1).PasteSpecial

* is that sheet protected against changes ?
Open it manually and copy&paste it yourself. Any problems ?
On the "Master" sheet (data to be copied from), there is a graph and some other objects in rows 1-3. Row 4 starts a table which runs down the sheet. On the "Export" sheet, the sheet is structured exactly the same, and the data should be pasted starting at row 5. The "Export" sheet is not protected, and I can copy from the Master and paste into the Export without any issues.
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,690
Members
449,117
Latest member
Aaagu

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