I have some user form of option buttons that share the same groupname "optGroup". I would like to enable/disable all option button ins "optGroup" by toggling a checkbox. So far, no working code, but rudimentary idea is:

Private Sub Checkbox_Click()
optGroup.Enabled = chkDays.Value
End Sub
This doesn't work because optGroup is not a object. So I was wondering is it possible to and how would I reference the the `Enabled` property of each option button in optGroup?