Active

flynavy

New Member
Joined
Mar 18, 2015
Messages
43
Forgot the Title Block - should have been "ActiveSheet.UsedRange.Copy Destination:=tosheet(“A600”).Paste Failure

Trying to copy used range and paste to "destination" sheet - thought it would be cleaner. Copying from used range in wb_IGQty to workbook containing macro (ThisWorkbook). 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. (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
 
Last edited:

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Try
Code:
tosheet.Range("A600")

Without the paste
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,643
Members
449,093
Latest member
Ahmad123098

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