VBA: Referencing a named range

Guraknugen

New Member
Joined
Mar 15, 2017
Messages
36
Let's say I have a named range like this:
Name: "MyRange"
Range address: "A2:C101"
Sheet name: "MySheet"

This is the only way so far that I could reference that name:
VBA Code:
    Dim oRange As Range
    Set oRange = Worksheets("MySheet").Range("MyRange")

So it works, but since Excel already knows that "MyRange" is actually "MySheet!A2:C101", Worksheets("MySheet") seems a little bit redundant.
I suppose there's a better way, but so far the few things I tried has failed, such as:

VBA Code:
Set oRange = Range("MyRange") ' Yields a runtime error no. 1004.
Set oRange = ThisWorkbook.Names("MyRange").RefersToRange ' 1004 again.



For reference, this is very easy in LibreOffice Calc:
vba]oRange = ThisComponent.NamedRanges.getByName("MyRange").getReferredCells()
No need to tell it what sheet it's on, it's already in the range name definition, just like in Excel.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
maybe

VBA Code:
Set oRange = [MyRange]

or just use [MyRange] where you are using oRange
 
Upvote 0
This should work but it's risky. If you have the same name set at both a workbook variable and a worksheet variable, you will get a different result depending on which sheet is active.
The name scoped to the activesheet will take precedence over the workbook name.
VBA Code:
    Set oRange = Range(ActiveWorkbook.Names("MyRange").RefersTo)

Note: If you make your range a Table then the name can only be used once and is scoped to the workbook, so Range("MyTableName") or Range("MyTableName").ListObject works
 
Upvote 0
So it works, but since Excel already knows that "MyRange" is actually "MySheet!A2:C101", Worksheets("MySheet") seems a little bit redundant.
I suppose there's a better way, but so far the few things I tried has failed, such as:

VBA Code:
Set oRange = Range("MyRange") ' Yields a runtime error no. 1004.
Set oRange = ThisWorkbook.Names("MyRange").RefersToRange ' 1004 again.

There are two kinds of names, workbook level names , and worksheet level names. For a workbook level name, the above code should work no problem. The above error usually occurs because "MyRange" was defined as a worksheet level name, and the code was executed when another worksheet was the active sheet. If you added code to make the correct worksheet active

VBA Code:
    Worksheets("MySheet").Activate
    Set oRange = Range("MyRange") ' Yields a runtime error no. 1004.
    Set oRange = ThisWorkbook.Names("MyRange").RefersToRange ' 1004 again.

or qualified your references to the correct worksheet.

VBA Code:
    Set oRange = Worksheets("MySheet").Range("MyRange") ' Yields a runtime error no. 1004.
    Set oRange = ThisWorkbook.Worksheets("MySheet").Names("MyRange").RefersToRange ' 1004 again.

Then it should work w/o error.
 
Upvote 0

Forum statistics

Threads
1,215,548
Messages
6,125,468
Members
449,230
Latest member
ASBeard

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