Name box value is not in Name Manager

simmerer

New Member
Joined
Sep 6, 2017
Messages
33
Hello,
I have a spreadsheet with 3 tables which are named. These are displayed in the Formulas tab of the ribbon in Excel 2010, in the Name Manager. However, in addition to those three, another range name is displayed in the Name Box. There was unreadable information in this spreadsheet when I opened it this morning which Excel repaired. I think that is why this name is there.

The range is not needed and does not appear to really refer to any cells. That is, when I select it in the Name Box, no range is selected. How do I get rid of it? I tried Range("Actions4").delete which did not work.

-- removed inline image ---

-- removed inline image ---
 
Last edited:

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Why not just delete it using the name manager?
 
Upvote 0
Hi Fluff! the name is not in the name manager. It is weird. Selecting the name in the name box does nothing. When I opened the file this morning, I got an error regarding unreadable content. Excel removed stuff to repair. That is probably when this occurred.
 
Upvote 0
Not sure if this will help but
File > Check for issues > Inspect Workbook > Inspect
Once finished scroll down & look for hidden names
 
Upvote 0
OK I found it, ran it, and it did not find any hidden names. It does not seem to be causing any issues at this point, so I guess I will just ignore it :(
 
Upvote 0
If this is still a problem, try running this & see what you get
Code:
Sub ListNamedRanges()
  Dim wb As Workbook
  Dim NR As Name
  Dim X As Long
  
  Set wb = ThisWorkbook
  X = 0
  
  ActiveCell.Offset(X, 0).Value = "Name"
  ActiveCell.Offset(X, 1).Value = "Index"
  ActiveCell.Offset(X, 2).Value = "Refers TO"
  ActiveCell.Offset(X, 3).Value = "WB"
  For Each NR In wb.Names
    X = X + 1
    ActiveCell.Offset(X, 0).Value = NR.Name
    ActiveCell.Offset(X, 1).Value = NR.Index
    ActiveCell.Offset(X, 2).Value = "'" & NR.RefersTo
    ActiveCell.Offset(X, 3).Value = NR.ValidWorkbookParameter
    
  Next NR
    
End Sub
Got the code from here
https://www.mrexcel.com/forum/excel-questions/1024971-please-help.html
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top