ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Finding All Range Names on a given sheet (https://www.excelbanter.com/excel-programming/298799-finding-all-range-names-given-sheet.html)

LAF[_2_]

Finding All Range Names on a given sheet
 
I am trying to find all range names that exist on a given sheet in m
workbook. I do not need to know the names for all of the sheets. Her
is the code I used, but it only displayed 1 of the names on that sheet
when in fact there are about 5. Can anyone help?

Sub testbsrange()
Dim oname As Object
For Each oname In Worksheets("Blank_Sheet1").Names
MsgBox oname.Name & oname.RefersToR1C1

Next oname
End Su

--
Message posted from http://www.ExcelForum.com


Tom Ogilvy

Finding All Range Names on a given sheet
 
Sub testbsrange()
Dim oname As Object
Dim rng as Range
For Each oname In worksheets("Blank_Sheet1").parent.Names
set rng = Nothing
on Error Resume Next
set rng = oname.RefersToRange
On Error goto 0
if not rng is nothing then
if lcase(rng.parent.name) = "blank_sheet1" then
MsgBox oname.Name & oname.RefersToR1C1
end if
End if
Next oname
End Sub

--
Regards,
Tom Ogilvy

"LAF " wrote in message
...
I am trying to find all range names that exist on a given sheet in my
workbook. I do not need to know the names for all of the sheets. Here
is the code I used, but it only displayed 1 of the names on that sheet,
when in fact there are about 5. Can anyone help?

Sub testbsrange()
Dim oname As Object
For Each oname In Worksheets("Blank_Sheet1").Names
MsgBox oname.Name & oname.RefersToR1C1

Next oname
End Sub


---
Message posted from http://www.ExcelForum.com/




LAF[_3_]

Finding All Range Names on a given sheet
 
It worked. That's what I was looking for. Thank you

--
Message posted from http://www.ExcelForum.com



All times are GMT +1. The time now is 10:26 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com