Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I really need help again. Now I have two drop downs and rows need to be
hidden or shown based on both selections. The following works for one. Can I add a second target? Private Sub Worksheet_Change(ByVal Target As Range) If Not Application.Intersect(Range("D7"), Target) Is Nothing Then Range("A29:A47").EntireRow.Hidden = False If Target.Value = "Refund" Then Range("a29:a32,A39:A40").EntireRow.Hidden = True ElseIf Target.Value = "Write off" Then Range("a33:a46").EntireRow.Hidden = True Else Range("A29:a32,a41:a46").EntireRow.Hidden = True End If End If End Sub Thanks! -- Maritza |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hide/shows raw based on drop down menue | Excel Programming | |||
Hide & Show Rows based on Check Boxes | Excel Discussion (Misc queries) | |||
Hide row(s) based on drop down selection | Excel Discussion (Misc queries) | |||
Hide/Show a row based on data entry in another row | Excel Programming | |||
Hide Rows - copy and paste only rows that show | Excel Worksheet Functions |