Names Not in Name Manager in Excel: 2 Solutions

Method 1 – Manual Solution to the Problem Names Not in Name Manager

If the Name Manager does not show defined names, that does not mean no defined names. We can check it manually, which is not in the name manager.
We can’t see the defined names in Name Manager here.

Excel Names not in Name Manager

We showed a defined name named Amounts which does not appear in the Name Manager but still works perfectly.

We have to find the defined names as well as their ranges.

Steps:

  • Change the extension name into zip. It converts from an Excel file to a Zip file.

Excel Names not in Name ManagerA warning box will appear.

  • Hit YES.

The file will turn the file into a zip file.

Excel Names not in Name Manager

  • Right-click on the mouse and select Open.

A new window will open.

  • Open the xl folder.

Excel Names not in Name Manager

  • Select workbook.xml file and Copy files to clipboard.

  • Paste the copied file to any other place or folder.

Excel Names not in Name Manager

  • Select the workbook.xml file.
  • Right-click on the mouse and choose Open with.
  • Select WordPad.

From the file opened in Wordpad, we can have the defined names and their ranges.

Excel Names not in Name Manager


Method 2 – Applying VBA to Find Names Not Present in Name Manager

Steps:

  • Select Developer from the ribbon.
  • Choose Visual Basic.

A new window will open.

  • Select Insert and hit Module.

Excel Names not in Name Manager

  • Write your VBA code in the Module.
Sub Find_Name_in_Name_manager() 
For Each definename In ActiveWorkbook.Names     	
definename.Visible = True 	
Next 
End Sub

We used the Subroutine to declare Sub Find_Name_in_Name_Manager().
We used a For loop to make the Names visible from ActiveWorkbook using ActiveWorkbook.Names. We used Name.Visible property which returns a Boolean Value whether to show the value or not. We chose True to make the defined names visible.

  • Go to the Name Manager.

Excel Names not in Name Manager

See the Excel Names in Name Manager.


Download the Practice Workbook


Related Articles


<< Go Back to Name Manager | Excel Formulas | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Naimul Hasan Arif
Naimul Hasan Arif

Naimul Hasan Arif, a BUET graduate in Naval Architecture and Marine Engineering, has been contributing to the ExcelDemy project for nearly two years. Currently serving as an Excel and VBA Content Developer, Arif has written more than 120 articles and has also provided user support through comments His expertise lies in Microsoft Office Suite, VBA and he thrives on learning new aspects of data analysis. Arif's dedication to the ExcelDemy project is reflected in his consistent contributions and... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo