Thanks.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
For Each nme In ActiveWorkbook.Names
If nme.Name Like "*_FilterDatabase" Or _
nme.Name Like "*Print_Area" Or _
nme.Name Like "*Print_Titles" Or _
nme.Name Like "*wvu.*" Or _
nme.Name Like "*wrn.*" Or _
nme.Name Like "*!Criteria" Then
Else
nme.Delete
End If
Next nme
End Sub
--
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
"GOH" <G...@discussions.microsoft.com> wrote in message
news:7064FCCB-3C29-430A...@microsoft.com...
For Each n In ActiveWorkbook.Names : n.Delete : Next n
Press <Enter> at the end of the line, and all your names will be
deleted.
Hope this helps.
Pete
If you work with names a bit, try the name manager add on. Google suggests
http://www.jkp-ads.com/officemarketplacenm-en.asp
HTH