Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
When you have multiple sheets hidden in workbook and want to unhide more tha
one, you must go back thru the dialog box to unhide each. Why not write this one to be like most others so you can shift-click/ctrl-click the sheetnames you want to unhide while you're ther ONCE and unhide them all at one time? |
#2
![]() |
|||
|
|||
![]()
Cyber
http://register.microsoft.com/mswish/suggestion.asp While waiting for MS to make the changes in the next version you could use a macro. Sub Show_Sheets() Dim i As Integer For i = 1 To ActiveWorkbook.Worksheets.Count ActiveWorkbook.Worksheets(i).Visible = True Next i End Sub Gord Dibben Excel MVP On Thu, 13 Jan 2005 11:33:02 -0800, "CyberTaz" wrote: When you have multiple sheets hidden in workbook and want to unhide more tha one, you must go back thru the dialog box to unhide each. Why not write this one to be like most others so you can shift-click/ctrl-click the sheetnames you want to unhide while you're ther ONCE and unhide them all at one time? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
editing multiple sheets at once | Excel Discussion (Misc queries) | |||
Multiple sheets selected | Excel Discussion (Misc queries) | |||
linking multiple sheets to a summary sheet | Excel Discussion (Misc queries) | |||
How do I plot data in Excel that is captured on separate sheets; . | Excel Discussion (Misc queries) |