Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a way to delete all defined names with a single action?
Thanks, Stefano |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Here's a simple macro to do it:
Sub remove_names() 'delete named ranges For Each nme In ActiveWorkbook.Names nme.Delete Next nme End Sub Hope this helps. Pete smaruzzi wrote: Is there a way to delete all defined names with a single action? Thanks, Stefano |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
There are names that excel creates and uses (and are usually hidden).
You may not want to remove all the defined names. Get Jan Karel Pieterse's (with Charles Williams and Matthew Henson) Name Manager: You can find it at: NameManager.Zip from http://www.oaltd.co.uk/mvp It'll make deleting names easier and safer. smaruzzi wrote: Is there a way to delete all defined names with a single action? Thanks, Stefano -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Deleting empty rows automatically | Excel Discussion (Misc queries) | |||
Deleting a worksheet but retaining values from the worksheet. | Excel Discussion (Misc queries) | |||
Deleting a worksheet but retaining values from the worksheet. | Excel Discussion (Misc queries) | |||
Deleting cells and shifting "right" | Excel Discussion (Misc queries) | |||
how prevent formula in cell from deleting when deleting value???? | New Users to Excel |