Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Dmitry Kopnichev
 
Posts: n/a
Default How to delete all defined names from a workbook?

Hello
How to delete all defined names from a workbook?


  #2   Report Post  
sfby
 
Posts: n/a
Default How to delete all defined names from a workbook?

The Name manager add in is very useful...

http://www.jkp-ads.com/OfficeMarketPlaceNM-EN.htm

  #3   Report Post  
Niek Otten
 
Posts: n/a
Default How to delete all defined names from a workbook?

Use the Name manager by Jan Karel Pieterse.
You download it he

http://www.jkp-ads.com/Download.htm

--
Kind regards,

Niek Otten

"Dmitry Kopnichev" wrote in message
...
Hello
How to delete all defined names from a workbook?




  #4   Report Post  
Dmitry Kopnichev
 
Posts: n/a
Default How to delete all defined names from a workbook?

Thank you!
"sfby" ???????/???????? ? ???????? ?????????:
oups.com...
The Name manager add in is very useful...

http://www.jkp-ads.com/OfficeMarketPlaceNM-EN.htm



  #5   Report Post  
Bob Phillips
 
Posts: n/a
Default How to delete all defined names from a workbook?

VBA

Sub DeleteNames()
Dim nme As Name


For Each nme In ActiveWorkbook.Names
nme.Delete
Next nme


End Sub




Here is another way, previously posted by Norman Harker. But beware, it
doesn't work with Excel 2003.


And here's a best kept secret of Excel but it comes with a health warning.


Tools Options Transition

Check Lotus 123 Help
Check Transition Navigation Keys


Now:
/RNR


Removes every single name in the workbook!


Beats doing them one at a time although you can use VBA or various Add-Ins.


But it really ought to come with a health warning after the /RNR command as
it can't be undone! And with many hundreds of names in a workbook

Just close the Names dialog box when it comes up


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Dmitry Kopnichev" wrote in message
...
Hello
How to delete all defined names from a workbook?






  #6   Report Post  
Don Guillett
 
Posts: n/a
Default How to delete all defined names from a workbook?

This will do it.

Sub DeleteAllNames() 'ALL sheets
For Each Name In Names
Name.Delete
Next Name
End Sub

or

Sub DeleteHiddenNames()
Dim n As Name
Dim Count As Integer
For Each n In ActiveWorkbook.Names
If Not n.Visible Then
n.Delete
Count = Count + 1
End If
Next n
MsgBox Count & " hidden names were deleted."
End Sub
Don Guillett
SalesAid Software

"Dmitry Kopnichev" wrote in message
...
Hello
How to delete all defined names from a workbook?




  #7   Report Post  
Dmitry Kopnichev
 
Posts: n/a
Default How to delete all defined names from a workbook?

The Name manager caused Excel to shut down without saving files. The error
appeared when I tried to delete inoperable names.
"Niek Otten" сообщил/сообщила в новостях следующее:
...
Use the Name manager by Jan Karel Pieterse.
You download it he

http://www.jkp-ads.com/Download.htm

--
Kind regards,

Niek Otten

"Dmitry Kopnichev" wrote in message
...
Hello
How to delete all defined names from a workbook?






  #8   Report Post  
Dave Peterson
 
Posts: n/a
Default How to delete all defined names from a workbook?

Be careful.

Excel creates names that it uses (without your knowledge and without your
permission).

If you delete those names, you could be breaking something that excel needs.

If I were you, I'd get a copy of Jan Karel Pieterse's (with Charles Williams and
Matthew Henson) Name Manager:

You can find it at:
NameManager.Zip from http://www.oaltd.co.uk/mvp

You can delete just the names you want pretty easily.



Dmitry Kopnichev wrote:

Hello
How to delete all defined names from a workbook?


--

Dave Peterson
  #9   Report Post  
Dave Peterson
 
Posts: n/a
Default How to delete all defined names from a workbook?

You may want to contact Jan Karel:
http://www.jkp-ads.com/Contact.htm

If the file doesn't contain any proprietary information, I'm sure he would like
to have a copy (confirm with him first) so that he can see the problem.

If the file does contain proprietary info, maybe you can clean it up so that the
data is gone, but the problem is still there????

Dmitry Kopnichev wrote:

The Name manager caused Excel to shut down without saving files. The error
appeared when I tried to delete inoperable names.
"Niek Otten" сообщил/сообщила в новостях следующее:
...
Use the Name manager by Jan Karel Pieterse.
You download it he

http://www.jkp-ads.com/Download.htm

--
Kind regards,

Niek Otten

"Dmitry Kopnichev" wrote in message
...
Hello
How to delete all defined names from a workbook?





--

Dave Peterson
  #10   Report Post  
Dmitry Kopnichev
 
Posts: n/a
Default How to delete all defined names from a workbook?

I do not try again yet.
"Dave Peterson" ???????/???????? ? ????????
?????????: ...
You may want to contact Jan Karel:
http://www.jkp-ads.com/Contact.htm

If the file doesn't contain any proprietary information, I'm sure he would

like
to have a copy (confirm with him first) so that he can see the problem.

If the file does contain proprietary info, maybe you can clean it up so

that the
data is gone, but the problem is still there????

Dmitry Kopnichev wrote:

The Name manager caused Excel to shut down without saving files. The

error
appeared when I tried to delete inoperable names.
"Niek Otten" сообщил/сообщила в новостях следующее:
...
Use the Name manager by Jan Karel Pieterse.
You download it he

http://www.jkp-ads.com/Download.htm

--
Kind regards,

Niek Otten

"Dmitry Kopnichev" wrote in message
...
Hello
How to delete all defined names from a workbook?





--

Dave Peterson





  #11   Report Post  
Dmitry Kopnichev
 
Posts: n/a
Default How to delete all defined names from a workbook?

Thanks.
How to know which names Excel created? What exactly could I be breaking that
excel needs, if I delete those names?
"Dave Peterson" ???????/???????? ? ????????
?????????: ...
Be careful.

Excel creates names that it uses (without your knowledge and without your
permission).

If you delete those names, you could be breaking something that excel

needs.

If I were you, I'd get a copy of Jan Karel Pieterse's (with Charles

Williams and
Matthew Henson) Name Manager:

You can find it at:
NameManager.Zip from http://www.oaltd.co.uk/mvp

You can delete just the names you want pretty easily.



Dmitry Kopnichev wrote:

Hello
How to delete all defined names from a workbook?


--

Dave Peterson



  #12   Report Post  
Bob Phillips
 
Posts: n/a
Default How to delete all defined names from a workbook?

They usually take the format of


*_FilterDatabase
*Print_Area
*Print_Titles
*wvu.*
*wrn.*
*!Criteria

most will recreate next time needed, but not guaranteed.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Dmitry Kopnichev" wrote in message
...
Thanks.
How to know which names Excel created? What exactly could I be breaking

that
excel needs, if I delete those names?
"Dave Peterson" ???????/???????? ? ????????
?????????: ...
Be careful.

Excel creates names that it uses (without your knowledge and without

your
permission).

If you delete those names, you could be breaking something that excel

needs.

If I were you, I'd get a copy of Jan Karel Pieterse's (with Charles

Williams and
Matthew Henson) Name Manager:

You can find it at:
NameManager.Zip from http://www.oaltd.co.uk/mvp

You can delete just the names you want pretty easily.



Dmitry Kopnichev wrote:

Hello
How to delete all defined names from a workbook?


--

Dave Peterson





  #13   Report Post  
Dave Peterson
 
Posts: n/a
Default How to delete all defined names from a workbook?

I sent a message to Jan Karel. He would like to see your workbook.

You can send it to him at:





Dmitry Kopnichev wrote:

Hello
How to delete all defined names from a workbook?


--

Dave Peterson
  #14   Report Post  
Dmitry Kopnichev
 
Posts: n/a
Default How to delete all defined names from a workbook?

Thanks!
What exactly could I be breaking that excel needs, if I delete those names?
"Bob Phillips" сообщил/сообщила в
новостях следующее: ...
They usually take the format of


*_FilterDatabase
*Print_Area
*Print_Titles
*wvu.*
*wrn.*
*!Criteria

most will recreate next time needed, but not guaranteed.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Dmitry Kopnichev" wrote in message
...
Thanks.
How to know which names Excel created? What exactly could I be breaking

that
excel needs, if I delete those names?
"Dave Peterson" ???????/???????? ? ????????
?????????: ...
Be careful.

Excel creates names that it uses (without your knowledge and without

your
permission).

If you delete those names, you could be breaking something that excel

needs.

If I were you, I'd get a copy of Jan Karel Pieterse's (with Charles

Williams and
Matthew Henson) Name Manager:

You can find it at:
NameManager.Zip from http://www.oaltd.co.uk/mvp

You can delete just the names you want pretty easily.



Dmitry Kopnichev wrote:

Hello
How to delete all defined names from a workbook?

--

Dave Peterson







  #15   Report Post  
Dmitry Kopnichev
 
Posts: n/a
Default How to delete all defined names from a workbook?

Thanks!
Does not publishing an e-mail address in a message a group cause spam to the
address?
"Dave Peterson" ???????/???????? ? ????????
?????????: ...
I sent a message to Jan Karel. He would like to see your workbook.

You can send it to him at:





Dmitry Kopnichev wrote:

Hello
How to delete all defined names from a workbook?


--

Dave Peterson





  #16   Report Post  
Dave Peterson
 
Posts: n/a
Default How to delete all defined names from a workbook?

Jan Karel told me it was ok to post that address. (I would have munged it,
too.)



Dmitry Kopnichev wrote:

Thanks!
Does not publishing an e-mail address in a message a group cause spam to the
address?
"Dave Peterson" ???????/???????? ? ????????
?????????: ...
I sent a message to Jan Karel. He would like to see your workbook.

You can send it to him at:





Dmitry Kopnichev wrote:

Hello
How to delete all defined names from a workbook?


--

Dave Peterson


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do you delete a workbook Bob Excel Discussion (Misc queries) 2 October 3rd 05 12:18 AM
Delete Define names across workbook Mike Excel Worksheet Functions 4 September 28th 05 12:41 AM
Using non defined names from another sheet pQp Excel Worksheet Functions 6 July 17th 05 11:06 PM
How can I Copy cell names from one workbook to another? G.H.B.B. Excel Discussion (Misc queries) 1 March 24th 05 02:30 AM
Unprotect Workbook Kent Excel Discussion (Misc queries) 1 February 4th 05 01:07 AM


All times are GMT +1. The time now is 07:56 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ╘2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"