Hi-
I'm trying to show rows when a check box is clicked, otherwise the rows should be hidden. This is the code I have so far.
Private Sub CheckBox1_Click()
If CheckBox1.Value = True Then Rows("15:15").Select
Selection.EntireRow.Hidden = False
If CheckBox1.Value = False Then...