From: Maureen D. on
Hi...I have Excel 2003. Is there a way to unhide multiple worksheets in a
workbook vs. unhiding one at a time?
From: Don Guillett on
a looping macro

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett(a)gmail.com
"Maureen D." <MaureenD(a)discussions.microsoft.com> wrote in message
news:FFCDB6D9-4AB3-44DF-A269-2561289038FC(a)microsoft.com...
> Hi...I have Excel 2003. Is there a way to unhide multiple worksheets in a
> workbook vs. unhiding one at a time?

From: Gord Dibben on
Sub unhide()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
If ws.Visible = xlHidden Then ws.Visible = xlSheetVisible
Next ws
End Sub


Gord Dibben MS Excel MVP

On Wed, 27 Jan 2010 09:13:01 -0800, Maureen D.
<MaureenD(a)discussions.microsoft.com> wrote:

>Hi...I have Excel 2003. Is there a way to unhide multiple worksheets in a
>workbook vs. unhiding one at a time?