Hi,
See according to me, You can take two command buttons.
and following is the coding.
Private Sub CommandButton1_Click()
Selection.EntireRow.Hidden = True ........this is for hide
End Sub
Private Sub CommandButton2_Click()
Selection.EntireRow.Hidden = False .......this is for unhide
End Sub