Hi cyberspace,

I'd like to list all range names in a workbook. The code below can do
this.

Code inspired by
http://www.mrexcel.com/forum/showthread.php?t=44907

-o-

Public Sub ListNames()

Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual

Dim wb As Workbook
Dim ws As Worksheet
Set wb = ThisWorkbook
Set ws = wb.Worksheets("Range_Names")

Dim i As Integer, n As Integer
Dim nm As Name

n = 2

With ws
  .[A1:G65536].ClearContents
  .[A1:D1] = [{"Name", "Sheet Name", "Starting Range", "Ending
Range"}]

  For Each nm In ActiveWorkbook.Names
    .Cells(n, 1) = nm.Name
    '.Cells(n, 2) = Range(nm).Parent.Name
    '.Cells(n, 3) = nm.RefersToRange.Address(False, False)
    .Cells(n, 2) = Range(nm).Parent.Name
    .Cells(n, 3) = Range(nm).Address
    n = n + 1
  Next nm

End With

[A:D].EntireColumn.AutoFit

Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic

End Sub

-o-

However, I get a run time error when range names are in this form :
=OFFSET('range_name_ref'!$A$1;1;;COUNTA('BD range_name_ref'!$A:$A)-1)

Is there anything I can do to the code to have offset named ranges
name and location listed?

Thanks for your help,

cyberuser

-- 
FORUM RULES (934+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

------------------------------------------------------------------------------------------------------
To post to this group, send email to excel-macros@googlegroups.com

Reply via email to