Paste of Range object is failing

Tomcoll67

New Member
Joined
May 13, 2019
Messages
23
Team,
I have tried debugging the below code and cannot find any issue, but it keeps failing with a 1004 error: Paste method of worksheet class failed.
The code works until it gets to the "ActiveSheet.Paste Destination:=Worksheets("Sheet1").Range("B2:B500") ' works with column B" line. Then fails.Thank you for any help.


Option Explicit
Dim fullPath As String

Private Sub FileOpenDialogBox()


With Application.FileDialog(msoFileDialogFilePicker)
.AllowMultiSelect = False
.Filters.Add "Excel Files", "*.xlsx; *.xlsm; *.xls; *.xlsb", 1
.Show

fullPath = .SelectedItems.Item(1) 'Set file paths for the SN report and the current Yearbook version
End With
End Sub

Private Sub GetSNReport() ' Open The SN ID Report and Copy Column A then close the report
Dim erow

FileOpenDialogBox

Do While Len(fullPath) > 0
If fullPath = "Weekly comparison.xlsm" Then
Exit Sub
End If

'Open file once found
Workbooks.Open (fullPath)
Sheets("Page 1").Select
Range("A3:A501").Copy
ActiveWorkbook.Save
ActiveWorkbook.Close

'Workbooks("Weekly comparison.xlsm").Activate
'Worksheets("Sheet1").Activate
erow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
ActiveSheet.Paste Destination:=Worksheets("Sheet1").Range("B2:B500") ' works with column B

fullPath = fullPath

Loop

fullPath = fullPath
MsgBox ("GetSNReport complete")

End Sub
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
That's a strange syntax to use for a paste. Try:
Code:
ActiveSheet.Range("B2").Paste
Or more simply just:
Code:
Range("B2").Paste
since your code has already made the desired destination sheet the Activesheet.
 
Last edited:
Upvote 0
That's a strange syntax to use for a paste. Try:
Code:
ActiveSheet.Range("B2").Paste
Or more simply just:
Code:
Range("B2").Paste
since your code has already made the desired destination sheet the Activesheet.


When I try "Range("B2:B500").Paste"(""excluded) I get the Run-time error '438': Object doesn't support this property or method.
Thank you for assisting.
 
Upvote 0
When I try "Range("B2:B500").Paste"(""excluded) I get the Run-time error '438': Object doesn't support this property or method.
Thank you for assisting.
You don't need to specify the entire range, just the first cell of same. Just try what I posted.
 
Upvote 0
I tried with the first cell also and get the "paste method of worksheet class failed" message.
Looking at your code, it appears that you cleared the clipboard of the copy when you saved the source workbook after you copied. Change the sequence in your code so you do the paste immediately after the copy.
 
Last edited:
Upvote 0
Looking at your code, it appears that you cleared the clipboard of the copy when you saved the source workbook after you copied. Change the sequence in your code so you do the paste immediately after the copy.

Thank you very much. It is now working.
 
Upvote 0
One last question. How do I mark this as solved?
Your post #7 is sufficient. We don't have a formal mechanism to mark threads as solved because that might discourage others from posting better solutions that we can all benefit and learn from.
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

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