The Workbook.Names collection contains all the workbook-wide names. The
Worksheet.Names collection contains the sheet level names. E.g.,
Dim WS As Worksheet
Dim N As Name
For Each N In ThisWorkbook.Names
Debug.Print N.Name, N.RefersTo
Next N
For Each WS In ThisWorkbook.Worksheets
For Each N In WS.Names
Debug.Print N.Name, N.RefersTo
Next N
Next WS

Signature
Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)
> Is there a named range collection in Excel? Or would I have to create
> this
[quoted text clipped - 5 lines]
>
> EM
ExcelMonkey - 31 Jul 2008 22:21 GMT
Excellent.
Thanks
EM
> The Workbook.Names collection contains all the workbook-wide names. The
> Worksheet.Names collection contains the sheet level names. E.g.,
[quoted text clipped - 19 lines]
> >
> > EM