Just be aware that "VeryHidden" sheets can only be unhidden via code (the Excel Format>Sheet>Unhide command won't work). To mimic the hide method used from Excel, just use:
ActiveWorkbook.Sheets("Sheet Name Here".Visible = False
which would allow it to be unhidden from the Excel menu (subject to any password you put on it).
To undo either method, use:
ActiveWorkbook.Sheets("Sheet Name Here".Visible = True
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.