Quantcast
Channel: Excel For You
Viewing all articles
Browse latest Browse all 151

Excel Short & Sweet Tip #4 (Hide Defined Names)

$
0
0

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


Viewing all articles
Browse latest Browse all 151

Trending Articles