![]() |
#1
|
|||
|
|||
![]() Hi All, I am trying to hide a worksheet based on the result of another cell. So.... IF "supply" worksheet Cell E2 = 2 then I want "supply (2)" Worksheet to appear or become unhidden. Fist time posting so please let me know if there is anything wrong with this post. I've also tried a few different macros but couldn't get it working. Many Thanks! |
#2
|
|||
|
|||
![]()
Hi,
here are 2 simple macros to hide and unhide worksheets. You need to change the sheet names to that you want to Hide or Unhide name. Code:
Sub Hide_Worksheet() If ActiveSheet.Cells(2, 5).Text = "2" Then Sheets("Sheet2").Visible = False End If End Sub Code:
Sub UnHide_Worksheet() If ActiveSheet.Cells(2, 5).Text = "2" Then Sheets("Sheet2").Visible = True End If End Sub |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
VBA Code to Hide columns based on selection on prior sheet | Silver1379 | Excel Programming | 0 | 04-15-2015 08:40 AM |
Hide/Unhide Text Based on Drop Down Selection | gw1500se | Word | 3 | 02-19-2015 12:17 PM |
![]() |
tammytran105 | Word VBA | 7 | 10-02-2014 04:30 PM |
![]() |
miscia76 | Word | 1 | 11-13-2013 04:29 PM |
![]() |
ubns | Excel Programming | 5 | 05-07-2012 05:44 AM |