View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
JWR JWR is offline
external usenet poster
 
Posts: 3
Default a way to conditionally hide tabs in a range

Great Thanks for your help!

"Chip Pearson" wrote:

Try something like the following:

Dim WS As Worksheet
For Each WS In ThisWorkbook.Worksheets
If WS.Range("A1").Value = "Show" Then
WS.Visible = xlSheetVisible
Else
WS.Visible = xlSheetHidden
End If
Next WS


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"JWR" wrote in message
...
I'm not sure if this is possible but I'm searching for a
solution using a
control(selection of a cell) or button to take a range of
worksheets, to
first unhide all work sheets, then check a condition in one
cell on each of
the worksheets if the condition is positive then hide that
sheet.