Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
weeclaire
 
Posts: n/a
Default Multiple Unhide - is it possible


Hi All

Please can anyone help. On Microsoft Excel 2000 is there a way to
unhide more than one hidden tab at the same time?

Thanks guys!

Wee Claire


--
weeclaire
------------------------------------------------------------------------
weeclaire's Profile: http://www.excelforum.com/member.php...o&userid=28738
View this thread: http://www.excelforum.com/showthread...hreadid=508895

  #2   Report Post  
Posted to microsoft.public.excel.misc
Kevin B
 
Posts: n/a
Default Multiple Unhide - is it possible

From the menu you can only unhide worksheets 1 at at time, at least in Excel
2000.

The following macros might help though:
-------------------------------------------------------------------------------------------------

Sub UnhideAllSheets()

Dim wb As Workbook
Dim ws As Worksheet

Set wb = ActiveWorkbook

For Each ws In wb.Worksheets
If Not Sheets(ws.Name).Visible Then
Sheets(ws.Name).Visible = True
End If
Next ws

Set wb = Nothing
Set ws = Nothing


End Sub

-------------------------------------------------------------------------------------------------

Sub UnhideSheetsYesNo()

Dim iYesNo As Integer
Dim wb As Workbook
Dim ws As Worksheet

Set wb = ActiveWorkbook

For Each ws In wb.Worksheets

If Not Sheets(ws.Name).Visible Then
iYesNo = MsgBox("Unhide sheet " & ws.Name & _
"?", vbQuestion + vbYesNo, _
"Unhide This Sheet")
If iYesNo = vbYes Then
Sheets(ws.Name).Visible = True
End If
End If
Next ws

Set wb = Nothing
Set ws = Nothing

End Sub
-------------------------------------------------------------------------------------------------

The first macro (UnhideAllSheets) cycles through all the worksheets and if
they're not visible, makes them visible. The second macro
(UnhideSheetsYesNo) cycles through all the worksheets in the workbook,
prompting the user when it encounters a hidden sheet to unhide the sheet, yes
or no. It continues to cycle through all the worksheets in the workbook,
prompting for each hidden worksheet

Hope this helps...
--
Kevin Backmann


"weeclaire" wrote:


Hi All

Please can anyone help. On Microsoft Excel 2000 is there a way to
unhide more than one hidden tab at the same time?

Thanks guys!

Wee Claire


--
weeclaire
------------------------------------------------------------------------
weeclaire's Profile: http://www.excelforum.com/member.php...o&userid=28738
View this thread: http://www.excelforum.com/showthread...hreadid=508895


  #3   Report Post  
Posted to microsoft.public.excel.misc
flummi
 
Posts: n/a
Default Multiple Unhide - is it possible

Here's an excerpt from the help file:

Select sheets in a workbook
If you select more than one sheet, Microsoft Excel repeats the changes
you make to the active sheet on all other selected sheets. These
changes may replace data on other sheets.

To select Do this
A single sheet Click the sheet tab.


Two or more adjacent sheets Click the tab for the first sheet, and then
hold down SHIFT and click the tab for the last sheet.

Two or more nonadjacent sheets Click the tab for the first sheet, and
then hold down CTRL and click the tabs for the other sheets.

All sheets in a workbook Right-click a sheet tab, and then click Select
All Sheets on the shortcut menu.


Hide a sheet
Select the sheets you want to hide.
How?

On the Format menu, point to Sheet, and then click Hide.



Hans

  #4   Report Post  
Posted to microsoft.public.excel.misc
EdMac
 
Posts: n/a
Default Multiple Unhide - is it possible


ASAP utilities (asap-utilities.com) has this as a standard facility.

Ed


--
EdMac
------------------------------------------------------------------------
EdMac's Profile: http://www.excelforum.com/member.php...o&userid=30736
View this thread: http://www.excelforum.com/showthread...hreadid=508895

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't unhide rows Rob Excel Discussion (Misc queries) 3 December 13th 05 11:46 PM
Can I unhide multiple sheets at once? Brockli Excel Discussion (Misc queries) 1 February 24th 05 07:46 PM
Excel: Enable UnHiding of multiple sheets at once CyberTaz Excel Discussion (Misc queries) 1 January 13th 05 08:30 PM
How do you "Unhide" multiple sheets at one time? RPF2407 Excel Worksheet Functions 4 December 27th 04 02:17 AM
How do I unhide multiple sheets? ahonig Excel Worksheet Functions 3 December 14th 04 09:03 PM


All times are GMT +1. The time now is 07:01 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"