If you use a lot of defined name formulas, you might want to keep them from from being accidentally altered. You can run this procedure from a module in the VBE to accomplish this.
Sub HideDefinedNames()
For Each rname In ActiveWorkbook.Names
rname.Visible = False
Next
End Sub