Skip to content

Instantly share code, notes, and snippets.

@DuongAQ
Created February 21, 2018 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DuongAQ/1742265a778bc7b9e6c96f1e3172c3cf to your computer and use it in GitHub Desktop.
Save DuongAQ/1742265a778bc7b9e6c96f1e3172c3cf to your computer and use it in GitHub Desktop.
Sub Hide_Sheet_Test02() 'Ẩn tất cả các Sheet chỉ chừa lại Sheet cuối cùng
Dim i As Integer
For i=1 To Worksheets.Count - 1
Sheets(i).Visible=False
Next i
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment