Delete the range name : Range Name « Excel « VBA / Excel / Access / Word






Delete the range name

 
Sub DeleteRangeNames()
Dim rName As Name
    For Each rName In ActiveWorkbook.Names
        rName.Delete
    Next rName
End Sub

 








Related examples in the same category

1.Copy areas