Skip to content

Instantly share code, notes, and snippets.

@DuongAQ
Created February 21, 2018 07:37
Show Gist options
  • Save DuongAQ/98548f7d90d7f67fa0dca6a042fc960d to your computer and use it in GitHub Desktop.
Save DuongAQ/98548f7d90d7f67fa0dca6a042fc960d to your computer and use it in GitHub Desktop.
Sub Unhide_AllSheet() 'Bỏ ẩn tất cả các Sheet
Dim ws As Worksheet
On Error Resume Next 'Bỏ qua các lỗi có thể xảy ra
'Bỏ ẩn các sheet
For Each ws In Sheets
ws.Visible=True
Next
'Vô hiệu hóa bất kỳ lỗi nào xảy ra
On Error Goto 0
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment