hide/unhide sheet code

chobanne

Active Member
Joined
Jul 3, 2011
Messages
269
Pls guys, can someone help me

I need simple code for sheet1 depend on values in cell A1. If A1 is true then unhide sheet2, if A1 is false then hide sheet 2.

thank you
 
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    Sheets(2).Visible = (Sheets(1).Range("a1").Value <> True)
    Application.EnableEvents = True
End Sub

It doesn't matter what your sheets are called. If you think they do, then use this instead
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    Sheets("EXIT").Visible = (Sheets("ENTER").Range("a1").Value <> True)
    Application.EnableEvents = True
End Sub

Sorry my friend but this code dont work for me, did u try it? i do everything u wrote me... and nothing. Sheet "enter" dont appear if it is hide, or disappear if it is unhide
 
Upvote 0

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.

Forum statistics

Threads
1,224,507
Messages
6,179,181
Members
452,893
Latest member
denay

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