Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Finding Unused Names.
Written by Allen Wyatt (last updated November 4, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021
Richard has a workbook that he's been using for a while, and it has quite a few names in it (named ranges, named formulas, etc.). He wonders if there is an easy way to find names that are not used at all, as he'd like to get rid of those names.
There is no built-in way to get rid of these unused names. You can, however, create a macro that will do the trick for you. This is most easily done by using the Find method to figure out which names have references that can be "found." If the reference cannot be found, then the name is not in use.
Sub RidOfNames() Dim myName As Name Dim fdMsg As String On Error Resume Next fdMsg = "" For Each myName In Names If Cells.Find(What:=myName.Name, _ After:=ActiveCell, _ LookIn:=xlFormulas, _ LookAt:=xlPart, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False).Activate = False Then fdMsg = fdMsg & myName.Name & vbCr ActiveWorkbook.Names(myName.Name).Delete End If Next myName If fdMsg = "" Then MsgBox "No unused names found in the workbook" Else MsgBox "Names Deleted:" & vbCr & fdMsg End If End Sub
The macro steps through all the elements of the Names collection and does a search for each name. If the name cannot be found, then the name is deleted. When the macro is completed, it displays a message box that lists the names that were removed from the workbook.
There are problems with the RidOfNames macro, though. It doesn't check everywhere that a name might be used. For instance, it doesn't determine if names are referenced in a macro or if they are used on other worksheets (including hidden worksheets) in your workbook. It also doesn't check to see if a particular name is used in a conditional formatting rule or in charts, drop-down lists, and other objects. So, it is possible that the macro could delete names you really do need to keep. (This means you should be careful and run it only on a workbook you hae backed up elsewhere.) Even with the drawbacks, RidOfNames can work wonders in simple workbooks that don't have other macros (besides this one) and that contain most of their data on a single worksheet.
If you would rather not create your own macro, you can opt to use a free add-in by Jan Karel Pieterse. The add-in, called Name Manager, allows you to (guess what?) manage names better than you can do with native Excel. One of the functions it provides is the ability to get rid of names that are no longer needed. You can find the add-in here:
https://jkp-ads.com/excel-name-manager.asp
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10998) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. You can find a version of this tip for the older menu interface of Excel here: Finding Unused Names.
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!
It can be disconcerting if you are editing a workbook and can no longer change colors for cells in the workbook. This tip ...
Discover MoreIf you type information into a workbook, you may want to make sure that what you type is always stored in uppercase. ...
Discover MoreAt the very heart of editing is the ability to move and copy cells in a worksheet. Understanding the differences between ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2023-11-06 12:48:07
Alex
@Willy Thanks for making sure anyone who missed this section of the article will pay particular attention:
"There are problems with the RidOfNames macro, though. It doesn't check everywhere that a name might be used. For instance, it doesn't determine if names are referenced in a macro or if they are used on other worksheets (including hidden worksheets) in your workbook. It also doesn't check to see if a particular name is used in a conditional formatting rule or in charts, drop-down lists, and other objects. So, it is possible that the macro could delete names you really do need to keep. (This means you should be careful and run it only on a workbook you hve backed up elsewhere.)"
2023-11-05 15:00:24
J. Woolley
My Excel Toolbox's NamesInFormulas macro lists hyperlinks to formula cells referencing each visible defined name (named range) in the active workbook. (Hidden names are ignored.) The cell's formula will be included in a comment attached to its hyperlink. The following details are also provided for each name: Scope, Name, Refers To, Value, and Comment. Results are recorded in the active workbook's 'NamesIn...' worksheet.
My Excel Toolbox also includes the following dynamic array function to list defined names with workbook, worksheet, or any scope, including names that are normally hidden:
=ListNames([Scope],[SkipHidden],[SkipHeader])
The list includes these columns: Scope, Name, Visible, Refers To, Value, Comment. If Refers To and Value are both #REF! the name can probably be deleted.
Reviewing results from the NamesInFormulas macro and the ListNames function might help decide which names are unused, but first consider Willy Vanhaelen's comment below. The NamesInFormulas macro does not detect names used in charts, conditional formats, data validation, external workbooks, VBA procedures, etc.
When using pre-2021 versions of Excel without support for dynamic arrays, consider UseSpillArray.pdf.
See https://sites.google.com/view/MyExcelToolbox
2023-11-04 09:33:10
Ron S
There is another tip with similar macros
https://excelribbon.tips.net/T010338_Getting_Rid_of_Unused_Range_Names.html
2023-11-04 06:17:33
Willy Vanhaelen
THIS IS A VERY DANGEROUS MACRO. I tested it in a workbook 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 form
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu 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