paste errors

rjplante

Well-known Member
Joined
Oct 31, 2008
Messages
569
Office Version
  1. 365
Platform
  1. Windows
I am trying to paste and running into some errors. If I use the code below, I get a "PasteSpecial method of range class failed."

Sheets("QC5003.8 PCB Stab Rec - Storage").Range("BE5").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False


If I use the code listed this way, I get a "Select method of range class failed."

Sheets("QC5003.8 PCB Stab Rec - Storage").Range("BE5").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False

How can I get my data pasted into this workbook?

Thanks,

Robert
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
The first code should work. For the second you would need

Code:
Sheets("QC5003.8 PCB Stab Rec - Storage").select
Range("BE5").Select
Selection.PasteSpecial Paste:=xlPasteValues

Are you sure the clipboard isn't empty.
 
Upvote 0
Still no success. I get the following error with the code listed.

Run time error '1004':
PasteSpecial method of Range class failed


Sheets("QC5003.8 PCB Stab Rec - Storage").Select
Range("BE5").Select
Selection.PasteSpecial Paste:=xlPasteValues

Line in red is flagged by the debugger when I open the VBA editor. This code resides in a public module and is not found in a code window for a specific sheet. I have rewritten this a couple of times, and saved and restarted the worksheet, and still to no avail.

Thanks for any direction.

Robert
 
Upvote 0
Probably the clipboard is empty (nothing to paste). Can you post the code from the line where you Copy to the line that fails.
 
Upvote 0
Here is the code. I am in workbook B and copying data to Workbook A (File1).

Range("B1").End(xlDown).Offset(0, -1).Copy 'From Workbook B

ActiveWorkbook.Save
ActiveWorkbook.Close

Workbooks(File1).Activate 'Workbook A

Sheets("QC5003.8 PCB Stab Rec - Storage").Visible = True
Sheets("QC5003.8 PCB Stab Rec - Storage").Select
Range("BE5").Select
Selection.PasteSpecial Paste:=xlPasteValues

Does the Save and Close erase the clipboard? If so then I have to do a back and forth between the two workbooks correct?

Thanks,

Robert
 
Upvote 0
Try this

Code:
Range("B1").End(xlDown).Offset(0, -1).Copy 'From Workbook B
With Workbooks(File1)
    .Sheets("QC5003.8 PCB Stab Rec - Storage").Visible = True
    .Sheets("QC5003.8 PCB Stab Rec - Storage").Range("BE5").PasteSpecial Paste:=xlPasteValues
End With
ActiveWorkbook.Save
ActiveWorkbook.Close
 
Upvote 0
That last bit of code did the trick. Thanks a ton.
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,436
Members
449,083
Latest member
Ava19

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