I find Form-type checkboxes easy to work with. Easier than ActiveX in some cases. Especially if you have several checkboxes that do nearly the same thing. It may be possible to have one procedure for all the Form-type checkboxes. ActiveX checkboxes require each have an event procedure.
Maybe assign this this to your Form-type checkbox.
![]()
Sub Toggle_Rows Rows("13:15").Hidden = Not Range("H11").Value End Sub
Bookmarks