Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks a lot
"Pete McCosh" wrote in message ... 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 . |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here you go
Dim nme As Name For Each nme In ActiveWorkbook.Names Debug.Print nme.Name nme.Delete Next nme -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "U. Kõrsmaa" wrote in 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 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you very much
"Bob Phillips" wrote in message ... Here you go Dim nme As Name For Each nme In ActiveWorkbook.Names Debug.Print nme.Name nme.Delete Next nme -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "U. Kõrsmaa" wrote in 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 |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Lotus had that option:
There's a quick keyboard method based on Lotus 1-2-3 /rnr / Range Name Reset It's a powerful command not replicated by Excel but you can easily loop through names for each nm in thisworkbook.name nm.delete Next -- Regards, Tom Ogilvy "U. Kõrsmaa" wrote in 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 |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
.... and thank you very much too
"Tom Ogilvy" wrote in message ... Lotus had that option: There's a quick keyboard method based on Lotus 1-2-3 /rnr / Range Name Reset It's a powerful command not replicated by Excel but you can easily loop through names for each nm in thisworkbook.name nm.delete Next -- Regards, Tom Ogilvy "U. Kõrsmaa" wrote in 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel names in workbook - how to delete all? | Excel Discussion (Misc queries) | |||
Delete cell names on complete workbook | Excel Discussion (Misc queries) | |||
How to delete all defined names from a workbook? | Excel Worksheet Functions | |||
How to delete all defined names from a workbook? | Links and Linking in Excel | |||
Delete Define names across workbook | Excel Worksheet Functions |