M
michaelberrier
I found this great code for unchecking all Form Toolbar created
checkboxes on a single sheet:
Sub Clearem()
Dim bx as object
For each bx in Worksheets("Sheet1").Checkboxes
bx.value = xlOff
Next
End Sub
How can I adapt this to uncheck all boxes in an entire workbook? I've
tried Activebook and workbook("") with no luck.
Thanks in adavnce.
checkboxes on a single sheet:
Sub Clearem()
Dim bx as object
For each bx in Worksheets("Sheet1").Checkboxes
bx.value = xlOff
Next
End Sub
How can I adapt this to uncheck all boxes in an entire workbook? I've
tried Activebook and workbook("") with no luck.
Thanks in adavnce.