Check Box influencing other Check Boxes

D

Dave Ramage

Add this code to the userform module:

Private Sub CheckBox6_Click()
Dim i As Integer

If CheckBox6.Value = True Then
For i = 1 To 5
Me.Controls("CheckBox" & i).Value = True
Next i
End If
End Sub

Cheers,
Dave.
 

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

Top