How to Hide and Unhide Sheets Based on Cell Value

nhinx

Board Regular
Joined
Aug 25, 2016
Messages
52
Office Version
  1. 2010
Dear All Excel Experts,

I would like to seek help from you to provide me a VBA that will hide and unhide the specific sheets i want. For example I have a sheets named "Data","Cat1", "Cat2", "Cat3","Dog1", "Dog2" and "Dog3" then whenever i input the word "Dog" in Cell "D4" it will hide (VeryHidden) the sheets named "Cat1", "Cat2", "Cat3". Then when I input the word "Cat" in Cell "D4" it will now unhide the sheets "Cat1", "Cat2", "Cat3" and then it will hide (VeryHidden) the sheets named "Dog1", "Dog2" and "Dog3". So Whenever I changed the name in Cell "D4" in sheet "Data" it will hide and unhide it vice versa.

Hope you could help me with this one.

Thanks
 
Try this.

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Dim Ws As Worksheet
    If Target.Count > 1 Then Exit Sub
    If Intersect(Target, Range("D4")) Is Nothing Then Exit Sub

For Each Ws In ThisWorkbook.Worksheets
    Select Case Target
        Case "Dog"
                If Ws.Name Like "Dog" & "*" Then Ws.Visible = xlSheetVisible
                If Ws.Name Like "Cat" & "*" Then Ws.Visible = xlSheetVeryHidden
         Case "Cat"
                If Ws.Name Like "Cat" & "*" Then Ws.Visible = xlSheetVisible
                If Ws.Name Like "Dog" & "*" Then Ws.Visible = xlSheetVeryHidden
           Case Else
     End Select
Next Ws

End Sub
 
Upvote 0

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Same for both Cat & Dog??? I'm assuming that is a typo?
Hi Snakehips,

Yeah it's a typo. It Should be this way

Select Case Worksheets("Data").Range("D4").Value

Case "Dog"
Worksheets("Dog 1").Visible = xlSheetVisible
Worksheets("Dog 2").Visible = xlSheetVisible
Worksheets("Dog 3").Visible = xlSheetVisible
Worksheets("Cat 1").Visible = xlSheetVeryHidden
Worksheets("Cat 2").Visible = xlSheetVeryHidden
Worksheets("Cat 3").Visible = xlSheetVeryHidden

Case "Cat"
Worksheets("Cat 1").Visible = xlSheetVisible
Worksheets("Cat 2").Visible = xlSheetVisible
Worksheets("Cat 3").Visible = xlSheetVisible
Worksheets("Dog 1").Visible = xlSheetVeryHidden
Worksheets("Dog 2").Visible = xlSheetVeryHidden
Worksheets("Dog 3").Visible = xlSheetVeryHidden


End Select
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top