ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Check Box influencing other Check Boxes (https://www.excelbanter.com/excel-programming/276060-check-box-influencing-other-check-boxes.html)

Dave Ramage[_2_]

Check Box influencing other Check Boxes
 
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.
-----Original Message-----
Using Excel 97...

I have 6 checkboxes on a UserForm. 5 of them can be
individually checked but by checking CheckBox6 I would
like the other 5 checkboxes to be automatically "checked"
as well.

Does anyone know how to do this?
.



All times are GMT +1. The time now is 12:54 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com