Okay, I created two short macros. Assign the first macro to your "Base Product" checkbox (Checkbox38_click) and the second macro (CheckboxIndOp_check) to each of the other checkboxes.
Sub CheckBox38_Click()
' code for clearing
If Range("A4") = True Then Range("A9:A14").Value = False
End Sub
Sub CheckBoxIndOp_Click()
'For individual Options
If WorksheetFunction.CountIf(Range("A9:A14"), True) > 0 Then
Range("A4").Value = False
End If
End Sub
To assign the macro, right click on the checkbox (unprotected spreadsheet) and assign macro> new. Then paste the two macros into the open module. Then right click on the individual checkboxes and assign them to the IndOp macro.
Did that work for you?
Bookmarks