You are on page 1of 1

Alt + f11

실행 → 매크로 → 만들기 →

Sub Show_Names()
'/// (숨겨진) 모든 이름을 보이게 함
Dim n As Name
For Each n In ThisWorkbook.Names
n.Visible = True
Next n
End Sub

→ 실행

You might also like