Simple: list all named ranges

Foeth

New Member
Joined
Aug 18, 2002
Messages
14
As simple as that, what is the easiest way to construct a list with all named ranges in a sheet?

Of course I can use insert-->name..>define to see them all, but a nice automated list would be more useful (it's a few pages of names). Don't need the entire solution, a nudge in the right direction is sufficient.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
On 2002-10-21 09:01, Foeth wrote:
As simple as that, what is the easiest way to construct a list with all named ranges in a sheet?

Of course I can use insert-->name..>define to see them all, but a nice automated list would be more useful (it's a few pages of names). Don't need the entire solution, a nudge in the right direction is sufficient.

Have a look at the Information option of the ASAP Utilities add-in, a free download from:

http://asap-utilities.com
 
Upvote 0
If you don't need everything that ASAP you:

From the Menu

Insert, Name, Paste, Paste List

Just make sure your cursor is in the cell where you want the list to start. You will get a list of all ranges and what they refer to.
 
Upvote 0
If you work with VBA, you can try this code:

Dim myObject
For Each myObject In Application.Names
i = i + 1
MsgBox Application.Names(i).Name
MsgBox Application.Names(i).RefersTo
Next
 
Upvote 0
Using Insert-->name-->paste-->paste list works and is quite simple (I might even say: Doh!.

The VBA code works as well, but as there are a few pages of names, rather click-intensive!

I'll try to download the ASAP tools as well, if I can talk our administator into allowing for downloads from FTP servers.

Thanks all. Now I can start the grateful task of documentation slightly faster.
This message was edited by Foeth on 2002-10-22 02:29
 
Upvote 0
Another good utility is the Excel Utilities addin at http://www.appspro.com.

I have had problems with ASAP and listing range names but Excel Utilities works wonders even giving the range names of the hidden ranges.
 
Upvote 0

Forum statistics

Threads
1,203,174
Messages
6,053,932
Members
444,694
Latest member
JacquiDaly

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top