Vba - new method (for me) of copy/paste failing - using "destination"

flynavy

New Member
Joined
Mar 18, 2015
Messages
43
(by the way - this is a duplicate post because I left out the title in the first post - sorry!)
Trying to copy UsedRange and paste to "destination" sheet - thought it would be cleaner. Copying from UsedRange range in wb_IGQty Workbook to workbook containing macro (ThisWorkbook). I'm failing with error 438 "Object does not support this property or method". This approach appeared cleaner than my old code so I tried something new. Questions: (1) what is wrong with the code, and (2) should I deep-six this approach. (I'm failing in the last line of code below - also failed without the .Paste). Thanks in advance for your thoughts...
Rich (BB code):
debugger = 51
Set wb_IGQty = Workbooks.Open(“\\ICSBS\RedirectedFolders\me\My Documents\IGQty.xlsx”)
debugger = 52
Dim tosheet As Worksheet
debugger = 53
Set tosheet = ThisWorkbook.Worksheets(“Inv”)
debugger = 54
ActiveSheet.UsedRange.Copy Destination:=tosheet(“A600”).Paste
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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