Unselect All CheckBoxes From Excel Workbook with VBA Macro
I have a workbook with over 100 checkboxes. They are form control checkboxes I would like to un-select them all at once that is set them to false. Sub clearcheck() ActiveSheet.CheckBoxes.Value = False End Sub This works for the active sheet. I would like this code to be for the whole workbook I have tried looking for the code and messing about with clearing the checkboxes but am none the wiser. I would really appreciate if some one could guide me thank you If you have OLEObject-style ( ActiveX ) checkboxes, then: Sub terranian() Dim o As Object For Each o In ActiveSheet.OLEObjects If InStr(1,