You can't using anything built in, only was is to use VBA code -- Regards, Peo Sjoblom
P Peo Sjoblom Aug 14, 2008 #1 You can't using anything built in, only was is to use VBA code -- Regards, Peo Sjoblom
J Joerg Mochikun Aug 14, 2008 #2 Maybe with a short macro: Sub UnhideSheets() If ActiveWorkbook.ProtectStructure = True Then MsgBox "Unable to unhide sheets. Workbook is protected", vbExclamation Else For Each ws In Sheets ws.Visible = True Next End If End Sub
Maybe with a short macro: Sub UnhideSheets() If ActiveWorkbook.ProtectStructure = True Then MsgBox "Unable to unhide sheets. Workbook is protected", vbExclamation Else For Each ws In Sheets ws.Visible = True Next End If End Sub