Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I click the + beside a group of rows, how do I get it to hide a row outside of the grouped rows.

I tried this but it didn't work.

Private Sub Worksheet_Change(ByVal Target As Range)

If (Target.Rows(11).Hidden = True) Then
    Rows(22).EntireRow.Hidden = False
Else
    Rows(22).EntireRow.Hidden = True
End If

End Sub
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
214 views
Welcome To Ask or Share your Answers For Others

1 Answer

Simply hiding or un-hiding a row will not trigger the Event, To use this Event, you must change a cell value.

EDIT#1

You can almost get what you want with the Worksheet_SelectionChange event.

Expand or collapse the Group of rows containing cell A11 and then click anywhere in the worksheet and row #22 will also expand/collapse. Put the following in a standard module:

Public Sub IsHiddenA11()
   With Range("A11")
   If .EntireRow.Hidden Then
      Range("A22").EntireRow.Hidden = True
   Else
      Range("A22").EntireRow.Hidden = False
   End If
   End With
End Sub

and put this in the worksheet code area:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Application.EnableEvents = False
        Call IsHiddenA11
    Application.EnableEvents = True
End Sub

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...