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