ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Excel: Enable UnHiding of multiple sheets at once (https://www.excelbanter.com/excel-discussion-misc-queries/3781-excel-enable-unhiding-multiple-sheets-once.html)

CyberTaz

Excel: Enable UnHiding of multiple sheets at once
 
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?

Gord Dibben

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?




All times are GMT +1. The time now is 08:02 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com