name deletion

R

rk0909

Hi all,
I want to delete lot of names from a sheet. is there an easy way via a macro
to delete the names rather than going and deleting them manually.

Thanks much,

RK
 
D

Don Guillett

Sub DeleteAllNames()
For Each N In sheet("sheetname").Names
N.Delete
Next N
End Sub
 
Top