K
k9deb
I use the following macro to remove all the range names in a workbook:
Sub RemoveNamesAll()
For Each N In ActiveWorkbook.Names
N.Delete
Next N
End Sub
As indicated it removes ALL names. However I would like to change thi
so that it removes all, except for "Print_Area" and "Print_Titiles".
have tried to modify the macro so that those two are not removed
without success.
Does anybody have any ideas
Sub RemoveNamesAll()
For Each N In ActiveWorkbook.Names
N.Delete
Next N
End Sub
As indicated it removes ALL names. However I would like to change thi
so that it removes all, except for "Print_Area" and "Print_Titiles".
have tried to modify the macro so that those two are not removed
without success.
Does anybody have any ideas