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
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top