I am trying open very hidden tabs in a spreadsheet that someone else has sent me.
In the VBA screen, I've tried just selecting the tabs to be visible but get the following error message.
"Unable to set the Visible property of the Worksheet class".
I've also tried running the following code but still doesn't appear to work.
Does anyone have any suggestions? Under "File", it does say that "A password is required to open this workbook" so not sure if that's related.![]()
Sub UnhideVeryHiddenSheets() Dim wks As Worksheet For Each wks In Worksheets If wks.Visible = xlSheetVeryHidden Then wks.Visible = xlSheetVisible Next End Sub
Thanks.











LinkBack URL
About LinkBacks
Register To Reply

Bookmarks