Created
December 25, 2013 06:56
-
-
Save kshimi/0d1aa0e5f9481a42a812 to your computer and use it in GitHub Desktop.
Excelで非表示になっている「名前」を表示する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Sub VisibleNames() | |
Dim name As Object | |
For Each name In Names | |
If name.Visible = False Then | |
name.Visible = True | |
End If | |
Next | |
MsgBox "すべての名前の定義を表示しました。", vbOKOnly | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment