tags:

views:

44

answers:

2

Hey SO,

Whenever I click in a cell, and try to rename it, I get an entirely new reference to it, and the old one doesn't delete.

This wouldn't be a problem if I could delete the old reference, but if there is something wrong with the file, this might not be the best idea.

Is there any way to delete existing name references to a cell?

+3  A: 

I am not sure I understand your question. If you want to delete names, you can do so using VBA. A workbook has a names property. So you can do something like this:

ActiveWorkbook.Names("SomeName").Delete

BTW, you can also delete the names manually (just in case you don't know. EDIT: see Vicky's answer).

stephan
+4  A: 

In Excel 2003 at least, click Insert -> Name -> Define, select the reference you no longer want and click Delete.

Vicky