Having trouble with hiding a template sheet
I've been trying to set up the Workboo开发者_StackOverflowk_Open() sub so that it hides my template sheet when I open the workbook, but it always hides the template and any subsequent sheet that I create with my macros that use the template. I'm not really sure why it's hiding everything, but I would like to know how to hide
My guess, your sheet create macro is making a copy of the template. Unhide the copy:
Set sh = ThisWorkbook.Sheets("Template").Copy
sh.Visible = xlSheetVisible
精彩评论