Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I am very, very new to macros so please forgive me. I am trying to unhide rows when the word "Yes" is selected in a cell. I have found (and modified the following macro) from another post, which works great: Private Sub Worksheet_Change(ByVal Target As Range) If Range("c14").Text = "Yes" Then Rows("15:16").EntireRow.Hidden = False If Range("c14").Text = "" Then Rows("15:16").EntireRow.Hidden = True End Sub My problem is, I need this to work for the following as well: if c17 is yes, unhide 18:19 if c20 is yes, unhide 21:22 if c23 is yes, unhide 24:25 I tried copying and pasting the first macro and modifying it for each scenario but I get an error message (something about the Private Sub). Any help would be greatly appreciated! :) |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hiding/unhiding rows | Excel Worksheet Functions | |||
Unhiding Rows | Excel Discussion (Misc queries) | |||
Unhiding rows | Excel Discussion (Misc queries) | |||
hidden rows keep unhiding themselves! | Excel Discussion (Misc queries) | |||
Unhiding Rows | Excel Programming |