VBA: Set Range Variable

ExcelKnut

Board Regular
Joined
Apr 18, 2013
Messages
144
I'm trying to set a range variable but I keep getting an error (Run-time error '
1004': Method 'Range' of object'_worksheet' failed. Please help me to understand what I'm doing wrong.

Code:
Dim rng As Range
Set rng = Sheet24.Range(Cells(1, 1), Cells(41, 22))

Jeff
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Try:

Code:
Dim rng As Range
Set rng = Sheet24.Range(Sheet24.Cells(1, 1), Sheet24.Cells(41, 22))

The cells part was using the active sheet not the sheet you wanted.
 
Upvote 0
You need to qualify each part of the "Rng"address by adding the "." (dot) as shown, to reflect the sheet.

Code:
Dim rng As Range
With Sheets("Sheet24")
    Set rng = .Range(.Cells(1, 1), .Cells(41, 22))
End With
MsgBox rng.Address
 
Last edited:
Upvote 0
Thanks guys! I tried to figure this out for two hours yesterday. I can't tell you how much I appreciate your assistance.
 
Upvote 0

Forum statistics

Threads
1,203,727
Messages
6,056,972
Members
444,899
Latest member
Excel_Temp

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