I have to loop thru check boxes in a worksheet & was searching for a solution. I found the following post from mrexcel excel questions forum. Post #2 is exactly what I need.
But, when I use this, I´m getting an error shown below. Not sure what is going wrong. Can the experts in this forum help please?
Link to a post from mrexcel excel questions forum:
[VBA] loop through all check box buttons on a sheet
Error:
VBA Code:
Dim i As Long
For i = 1 To 10
Worksheets("Sheet1").CheckBoxes("ck_" & i).Value = False
Next i
Link to a post from mrexcel excel questions forum:
[VBA] loop through all check box buttons on a sheet
Error: