Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Deleting All Names but a Few.
Written by Allen Wyatt (last updated August 19, 2021)
This tip applies to Excel 97, 2000, 2002, and 2003
Do you routinely work with worksheets that contain dozens (or hundreds) of named cells, and most of those names are unnecessary? Cleaning up the names is a huge task, but getting rid of the ones you don't need can make your workbook smaller and more efficient. The problem is, how do you get rid of a lot of unnecessary names all at once? You can certainly delete them one at a time, but such a process quickly gets tiresome.
One possible solution is to simply create a new workbook and copy the cells from the old workbook to the new one. Highlight the cells in the old workbook, use Ctrl+C to copy them, then paste them into worksheets in the new workbook. This will copy almost everything from the old workbook—formulas, formatting, etc. It does not bring copy over print settings or range names. The only task then remaining is to redefine the few names you want in the new workbook.
If you prefer to work with the old workbook (the one with all the names), it is best to create a macro that will do the name deletion for you. You need a macro that will allow you to delete all the names except those you want to keep. The following is a simple approach that accomplishes this task:
Sub DeleteSomeNames() Dim vKeep Dim nm As Name Dim x As Integer Dim AWF As WorksheetFunction 'Add Names to keep here vKeep = Array("Name1", "Name2") Set AWF = Application.WorksheetFunction For Each nm In ActiveWorkbook.Names x = 0 On Error Resume Next x = AWF.Match(nm.Name, vKeep, 0) On Error GoTo 0 If x = 0 Then nm.Delete End If Next Set AWF = Nothing End Sub
Before using the macro, modify the line that creates the vKeep array. Simply enter the names you want to keep within the array, each name surrounded by quotes and separated by commas. (In the example shown here, the names "Name1" and "Name2" will be kept.) The macro loops through all the names in the workbook and uses the Match function to see if the name is one in the array. If it is not, then it is deleted.
If you prefer to use a third-party solution to managing the names in your workbook, a great choice is the Name Manager add-in, written by Jan Karel Pieterse. You can find more information on the add-in here:
http://www.jkp-ads.com/officemarketplacenm-en.asp
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2419) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Deleting All Names but a Few.
Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!
Before you go about deleting rows and columns helter-skelter, it is a good idea to determine if there is anything in the ...
Discover MoreTwo lists of similar data can be challenging to synchronize. Here are some ways that you can align data in two different ...
Discover MorePaste some information into a worksheet and Excel helpfully displays some options related t the paste operation. If you ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-02-20 04:13:28
JMJ
@Willy
Thank you for your experiment! I must admit I didn't tested carefully enough all the cases where a name could be used...
I'll try to take them into account in the next version.
2017-02-19 06:23:34
Willy Vanhaelen
@JMJ
THIS IS A VERY DANGEROUS MACRO. I tested it in a workbok with many names and it deleted most of them because they were only used in vba code. It also deleted one used in a conditional format formula.
2017-02-18 09:55:03
Tom Bates
Allen, I'm glad you mentioned the JKP Name Manager - it's an *Excellent* (no pun intended) tool that I've used it for years, and it's free!
Tom
2017-02-18 06:18:27
JMJ
Another solution is to delete only unused names, that's what this macro does:
------------------------------------------------
Public Sub SupprNoms()
'pour se débarrasser des noms inutilisés du classeur.
Dim UnNom As Name
Dim msg As String
On Error Resume Next
msg = ""
For Each UnNom In Names
If Cells.Find(What:=UnNom.Name, _
After:=ActiveCell, _
LookIn:=xlFormulas, _
LookAt:=xlPart, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False, _
SearchFormat:=False).Activate = False Then
msg = msg & UnNom.Name & vbCr
ActiveWorkbook.Names(UnNom.Name).Delete
End If
Next UnNom
On Error GoTo 0
If msg = "" Then
MsgBox "Aucun nom inutilisé dans ce classeur"
Else
MsgBox "Noms supprimés :" & vbCr & msg
End If
End Sub
------------------------------------------------------
Hope this helps !
2016-08-22 05:50:11
jayes
it does nothing on my excel i do not see other names deleted
2012-10-11 10:29:58
Luciana
Good morning.
I tried the macro above, and it works very well to delete all names but a few... However the names that remain on the file have always # REF as reference and before I had no error on the references ... Is there a way to keep the name and the reference to the name ?
Thank you very much
Luciana
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments