Hiding checkboxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a spread sheet that has several check boxes. When a certain check box
is checked I need to hide other check boxes along with hiding the row. I
know how to hide the row when a check box is ticked but I need help hiding
the check boxes. Is this possible? Any help would be appreciated.
 
set the visible property to false. i.e. checkbox1.visible = false.
You'd do this in the same event that you would use to hide rows.
 
Back
Top