"Selection.Paste" = Object dosen't support this property or method.

Ark68

Well-known Member
Joined
Mar 23, 2004
Messages
4,564
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Here is a portion of some of my project code:

Sheets("Carbon Copy").Select
Range("L23:AD25").Select
Selection.Copy
Sheets("TUESDAY").Select
Range("L22:AD24").Select
Selection.Paste

I am getting error (Object dosen't support this property or method.) with "Selection.Paste"

The host cells on worksheet CARBON_COPY are outlined, but not with the typical copy flashing border. The destination cells on the target worksheet are outlined as well. A manual CTRL-V does not paste anything. This makes me wonder if there is anything in the clipboard to be pasted?

Seems like a simple problem, but I have been challenged finding a solution.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Sheets("Carbon Copy").Select
Range("L23:AD25").Select
Selection.Copy
Sheets("TUESDAY").Select
Range("L22:AD24").Select
Selection.Paste

In the above, you are selecting again, and losing the original selection.

Try:
Code:
Sheets("Carbon Copy").Select
Range("L23:AD25").Select
Selection.Copy
Sheets("TUESDAY").Select
Range("L22:AD24").Paste

Or better:
Code:
Sheets("Carbon Copy").Range("L23:AD25").Copy _
Destination:=Sheets("TUESDAY").Range("L22:AD24")
 
Upvote 0

Forum statistics

Threads
1,215,463
Messages
6,124,963
Members
449,200
Latest member
indiansth

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