W
Wanna Learn
Hello I have a command button in a form
Private Sub CommandButton1_Click()
'hide rows
Dim myRng As Range
Set myRng = Me.Range("a32:a36")
myRng.EntireRow.Hidden = Not (myRng(1).EntireRow.Hidden)
but when I protect the form the button does not work. I also have the rows
and columns hidden
How can I correct this ?
thanks
End Sub
Private Sub CommandButton1_Click()
'hide rows
Dim myRng As Range
Set myRng = Me.Range("a32:a36")
myRng.EntireRow.Hidden = Not (myRng(1).EntireRow.Hidden)
but when I protect the form the button does not work. I also have the rows
and columns hidden
How can I correct this ?
thanks
End Sub