Help with SET and worksheet object

Johnny C

Well-known Member
Joined
Nov 7, 2006
Messages
1,069
Office Version
  1. 365
Platform
  1. Windows
Hi

I'm trying to copy from a template to a worksheet object, but am getting a "Method 'Range' of object '_Worksheet' failed" error (1004)

It has no problem setting the name, why can't I use a range with it?

Code:
    Set QueryOutputWkSht = Sheets.Add
    QueryOutputWkSht.Name = "Query Log"
    strQueryLogRangeRefOutput = "$A$1:" & Cells(9, wksQueryLog.Cells.SpecialCells(xlLastCell).Column).Address(True, True, xlA1)
    wksQueryLog.Range(strQueryLogRangeRef).Copy Destination:=QueryOutputWkSht.Range("A1")

Cheers
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
What is strQueryLogRangeRef?
 
Upvote 0
Doh, it was copied into a small sub - should have been strQueryLogRangeRefOutput as strQueryLogRangeRef was defined elsewhere in the big sub.

Works now.

I've been wrangling with Set and workbook/sheet objects all morning so assumed it was yet another misunderstanding on my part, stupid me forgot to look for the simple things :biggrin:
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,289
Members
452,902
Latest member
Knuddeluff

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