Range name box

  • Thread starter Thread starter Russell Stevenson
  • Start date Start date
With this macro you can delete the names in your workbook

Sub test()
Dim nm As name
For Each nm In ThisWorkbook.Names
nm.Delete
Next
End Sub
 
Back
Top