Thread: Hidden name
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Hidden name

dim nm as Name
for each nm in Thisworkbook.Names
if nm.Visible = False then
nm.Delete
end if
Next

Untested, but should work.

--
Regards,
Tom Ogilvy


"Stéphane Simard" wrote in message
...
Could you tell me how delete the hidden names?

Thank you.