Error with VBA code

  • Thread starter Thread starter xiaodan86
  • Start date Start date
X

xiaodan86

I am having error with this statement. Do anyone know what's the error
with this line:
..CheckBoxes(i).Value = False


Dim i As Integer
For i = 1 To 19
..CheckBoxes(i).Value = False
Next i
 
I would guess that you have fewer than 19 checkboxes.

--
Jim
|I am having error with this statement. Do anyone know what's the error
| with this line:
| .CheckBoxes(i).Value = False
|
|
| Dim i As Integer
| For i = 1 To 19
| .CheckBoxes(i).Value = False
| Next i
|
 
Back
Top