Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 20
Default List all the named ranges & the cells they refer to on a blank she

I have a spreadhseet that has approx 50 named ranged defined.

I would like to list all of the named ranges on a blank sheet and the cells
they refer to.

is this possible within excel itself or would i have to write a macro to do
it.

If the macro is the only oprion could some please guide me how to do it.

thank you
Hervinder

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,124
Default List all the named ranges & the cells they refer to on a blank she

Sub listdefinednames()
co = 1
For Each n In ActiveWorkbook.Names
'MsgBox n.Name
Cells(co, 1).Value = n.Name
'MsgBox n
Cells(co, 2).Value = n
co = co + 1
Next n
End Sub

--
Don Guillett
SalesAid Software

"Hervinder" wrote in message
...
I have a spreadhseet that has approx 50 named ranged defined.

I would like to list all of the named ranges on a blank sheet and the
cells
they refer to.

is this possible within excel itself or would i have to write a macro to
do
it.

If the macro is the only oprion could some please guide me how to do it.

thank you
Hervinder



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 49
Default List all the named ranges & the cells they refer to on a blank she

i believe a free add-in called 'ASAP Utilities' does this (and much more
besides!)


"Hervinder" wrote in message
...
I have a spreadhseet that has approx 50 named ranged defined.

I would like to list all of the named ranges on a blank sheet and the
cells
they refer to.

is this possible within excel itself or would i have to write a macro to
do
it.

If the macro is the only oprion could some please guide me how to do it.

thank you
Hervinder



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,588
Default List all the named ranges & the cells they refer to on a blank she

also:
http://www.jkp-ads.com/officemarketplacenm-en.asp

--
Tim Williams
Palo Alto, CA


"Tim Marsh" <tmarsh-trousers-@-take off my trousers to reply-blueyonder.co.uk wrote in message
...
i believe a free add-in called 'ASAP Utilities' does this (and much more
besides!)


"Hervinder" wrote in message
...
I have a spreadhseet that has approx 50 named ranged defined.

I would like to list all of the named ranges on a blank sheet and the
cells
they refer to.

is this possible within excel itself or would i have to write a macro to
do
it.

If the macro is the only oprion could some please guide me how to do it.

thank you
Hervinder





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Validation list from Named Ranges Mik Excel Worksheet Functions 5 July 30th 09 10:32 PM
list of named ranges rolando Excel Discussion (Misc queries) 3 November 4th 08 08:22 PM
Create list of Named Ranges Jim Tibbetts Excel Worksheet Functions 4 February 15th 07 05:29 PM
Populate a list box with named ranges..... Chris Salcedo Excel Programming 2 October 23rd 05 06:06 AM
Refer to Ranges using Cells notation Scott P Excel Programming 3 June 30th 05 06:08 AM


All times are GMT +1. The time now is 11:43 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"