Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I don't understand why this works this way, but when you read
the .Name property of an Excel.Range variable, it gives you the address, even if the named range exists. Is there a way to easily read the saved name of the range, rather than its address, from the object? To test what I'm describing, create a new workbook, and name a range MyRange on its first worksheet. Then run this: Public Sub Test_RangeName() Dim rng As Excel.Range Set rng = Range("MyRange") Debug.Print rng.Name, rng.Address, rng.AddressLocal rng.Name = "SomethingElse" Debug.Print rng.Name, rng.Address, rng.AddressLocal End Sub I know I could loop through the .Names collection of the workbook, but that seems to be an awful lot of work for what I want--the saved name out of the object itself, the same saved name I used to set the object in the first place. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need help with Error 'object variable or with block variable not set' | Excel Programming | |||
Object Variable Not Set Error on Selection object | Excel Worksheet Functions | |||
Dynamic range (object variable error) | Excel Programming | |||
Run-time error '91': "Object variable or With block variable not set | Excel Programming | |||
Cells.Find error Object variable or With block variable not set | Excel Programming |