Thread
:
Deleting Names in a Workbook
View Single Post
#
5
Posted to microsoft.public.excel.programming
excelent
external usenet poster
Posts: 695
Deleting Names in a Workbook
try this,- delete all names
Sub DelNames()
Dim x
For Each x In ActiveWorkbook.Names
ActiveWorkbook.Names(x.Name).Delete
Next
End Sub
Reply With Quote
excelent
View Public Profile
Find all posts by excelent