View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Peter T Peter T is offline
external usenet poster
 
Posts: 5,600
Default delete non-used range names

Hi Jason,

To find if a Name is used in cell formulas, chart (series, titles etc),
'linked' in a textbox, in vba code in any open accessible project, and
various other places, and report such locations is virtually impossible.
Luckily all that and much more has been virtually done!

Get hold of the NameManager addin which you can get from the authors' sites
of Jan Karel Pieterse and Charles Williams (download sections).

www.jkp-ads.com
www.DecisionModels.com

This is a new version, I did notice one or two minor bugs which I have no
doubt will be fixed soon. But it's a must have if you work extensively with
Names.

Regards,
Peter T



"TxRaistlin" wrote in message
...
I have an excel 2003 file with multiple sheets, and hndreds of named range
referring to both single cells or ranges. I have renamed some ranges but

the
old names persist. I know I could just delete all of the names in a

workbook
and I have the code for that, but how would i check to see if a range name

is
used anywhere, and if not then delete it?

Appreciate any help as always,

Jason