Delete Row Names

OldDogNewTricks

New Member
Joined
Jun 27, 2014
Messages
21
This is the code I have been using to delete the names of rows when a button is clicked. It is no longer working, and I am not sure why. Any suggestions? I have tried it with and without my little warning message box.

Please and thank you!

Code:
'This deletes ROW NAMES on THIS worksheet.
'This should be clicked before naming rows to provide a clean slate.
'In case this is clicked by mistake, it will first ask the user if this is what (s)he wants.


If MsgBox("This will delete all row names on this worksheet. Do you wish to continue?", vbYesNo + vbQuestion) = vbNo Then
    Exit Sub
  End If
  
  Dim N As Name
  On Error Resume Next
  For Each N In ActiveWorkbook.Names
    If N.RefersToRange.Worksheet.Name = ActiveSheet.Name Then
      If Range(Mid(N.RefersTo, 2)).Columns.Count = Columns.Count Then N.Delete
    End If
  Next N
  On Error GoTo 0
End Sub
[COLOR=#333333]
[/COLOR]
 
Last edited:

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

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