State about HIDE and UNHIDE property

     

    Through this Properties we can Hide and Unhide the rows and columns based on our requirement

     

     

     

     

     

    Display all Hidden Rows

     

    Private Sub CommandButton1_Click()
    For i = 1 To 11
    If Rows(i).Hidden = True Then
    Rows(i).Hidden = False
    End If
    Next
    End Sub