View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Pete McCosh[_5_] Pete McCosh[_5_] is offline
external usenet poster
 
Posts: 59
Default Delete names in workbook

Not with one command, but

For Each n in Activeworkbook.names
N.delete
Next N

Should do it.

Pete
-----Original Message-----
Dear masters

I tried several ways but could not find a solution.

How can I delete all the range names in the workbook with

one command?

Thanks in advance
U.Kõrsmaa


.