Name Manager does not open

Ron512

Board Regular
Joined
Nov 17, 2002
Messages
98
In an Excel 2013 workbook when attempting to open Name Manager (Formulas > Name Manger) I receive the progress circle for a few seconds than nothing.
I have searched the forum and internet with to luck.

Anyone have ideas?

Thanks
Ron
 
Code:
Sub MostlyNoNames()
  Dim i             As Long

  With ActiveWorkbook
    For i = .Names.Count To 1 Step -1
      Select Case .Names(i).Name
        Case "Bob", "Joe", "MyRange"
        Case Else
          .Names(i).Delete
      End Select
    Next i
  End With
End Sub
 
Upvote 0

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Hi guys,

i am having the same issue and i tried using the code that shg provided. how long should it take to run it? for me it says running and then - module (code)} Not responding.
 
Upvote 0
Sub Delnames_00()
Dim i As Long
Dim LastCount As Long
Dim StartTime As Double
StartTime = Timer
LastCount = ActiveWorkbook.Names.Count
Debug.Print "Starting Count: " & ActiveWorkbook.Names.Count
Application.Calculation = xlCalculationManual
For i = 1 To ActiveWorkbook.Names.Count
ActiveWorkbook.Names(i).Delete
If i = 500 Then Exit For
Next i
Application.Calculation = xlCalculationAutomatic
MsgBox "Batch done - Removed: " & LastCount - ActiveWorkbook.Names.Count & " named ranges " & vbNewLine & vbNewLine _
& "Run Time: " & Format$((Timer - StartTime) / 86400, "h:mm:ss") & " h:mm:ss"
End Sub


i tried using thig but then i get run time error 1004 the syntac of this name isnt correct
 
Upvote 0
You're welcome.
I am having a similar issue. There are a ton of error messages for broken (phantom) links in a workbook with many sheets copied in from different users (not done with a paste values - it wasn't me!). I ran the VBA that counts the number of named ranges, and it came up with about 140k. I am now running the code that purges all those names, but have no idea how long I can expect it to run for before aborting the mission and doing it in batches with the other bit of code. How long should I expect this code to take to delete 140k names? It's been about 20 minutes already.

Thanks!!
 
Upvote 0
Code:
Sub NoNames()
  With ActiveWorkbook
    Do While .Names.Count
      .Names(.Names.Count).Delete
    Loop
  End With
End Sub
shg,

I am having the same issue as Ron512 with the code provided by Mr. Moehling. When I run this, it seems to work, but after about 5-6 times running the macro (deleting 1,000 names per run), I get a I receive a “subscript out of range error”. It sounds like this version worked for Mr. Moehling, but for me it runs for a few seconds then my excel stops responding. Any suggestions on how to delete with this? I'm dealing with a financial model that has 150,000+ names and cannot open the name manager. I'm getting desperate - would appreciate any help you could provide. Thanks in advance!
 
Upvote 0
Bumping this thread because it helped me clean a file with >300K buried ranges, which from my googling might be a record.

I've got another file I'm scrubbing, but I'm erroring out because many names have invalid characters, causing me to get the Run-time 1004 syntax error:
"Verify the name:
- Starts with a letter or underscore
-Doesn't include a space or character that isn't allowed
-Doesn't conflict with an existing name in the workbook"

My guess it's the second option that's breaking things down. Can anyone think of a workaround here? Here's are the two script formats I currently have running. I get the same error both ways:

Thanks, y'all

SHG Version:
Sub MostlyNoNames()
'Name Manager does not open
Dim i As Long

With ActiveWorkbook
For i = .Names.Count To 1 Step -1
Select Case .Names(i).Name
Case "Print_Area"
Case Else
.Names(i).Delete
End Select
Next i
End With
End Sub


Mr Moehling version
Sub Delnames_00()
'Name Manager does not open
Dim i As Long
Dim LastCount As Long
Dim StartTime As Double
StartTime = Timer
LastCount = ActiveWorkbook.Names.Count
Debug.Print "Starting Count: " & ActiveWorkbook.Names.Count
Application.Calculation = xlCalculationManual
For i = ActiveWorkbook.Names.Count To 1 Step -1
Select Case ActiveWorkbook.Names(i).Name
Case "Print_Area"
Case Else
ActiveWorkbook.Names(i).Delete
End Select
If i = 100000 Then Exit For
Next i
Application.Calculation = xlCalculationAutomatic
MsgBox "Batch done - Removed: " & LastCount - ActiveWorkbook.Names.Count & " named ranges " & vbNewLine & vbNewLine _
& "Run Time: " & Format$((Timer - StartTime) / 86400, "h:mm:ss") & " h:mm:ss"
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,913
Messages
6,122,207
Members
449,074
Latest member
cancansova

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