Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Well, now I've done it! I was experimenting writing a macro to hide
some of the sheets in a workbook, and exclude others. It did just the opposite of what I wanted - hid the ones I didn't want hidden. I modified it to hide the others, knowing it would leave at least one unhidden, which it did. But when I tried to modify the macro to unhide some or all of the sheets, it hangs up. Sub RecShtUnHide() Dim wkSht As Worksheet For Each wkSht In ActiveWorkbook.Worksheets If Right(wkSht.Name, 7) = "Records" Then ActiveWindow.SelectedSheets.Visible = True<--Error End If Next End Sub At the marked line of code, I get "Method visible of object sheets failed" message. I can restore the sheets by writing a macro that specifically spells out each sheet name, but since there are over 20 sheets, this would be time consuming. I also have a backup from early today, but if I use that, I lose all the work I've done, both on the macros and the worksheets themselves, since early today. Does anyone know if it's possible to restore the worksheets without having to do them individually? Thanks for the help. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hidden rows unhide on their own | Excel Discussion (Misc queries) | |||
unhide row does not unhide the hidden rows | Excel Worksheet Functions | |||
Unhide hidden sheets | Excel Discussion (Misc queries) | |||
Unhide Worksheets (hidden via macros) | Excel Discussion (Misc queries) | |||
Why cannot I unhide the hidden rows ? | Excel Discussion (Misc queries) |