But if you allow 3 options any time:
- both false
- 1st true 2nd false
- 1st false 2nd true
try:
Private Sub CheckBox1_Click()
If CheckBox1.Value = True Then
Range("B12").Value = True
CheckBox2.Value = False
Range("B14").Value = False
End If
If CheckBox1.Value = False Then
Range("B12").Value = False
End If
End Sub
Private Sub CheckBox2_Click()
If CheckBox2.Value = True Then
Range("B14").Value = True
CheckBox1.Value = False
Range("B12").Value = False
End If
If CheckBox2.Value = False Then
Range("B14").Value = False
End If
End Sub
or shorter:
Private Sub CheckBox1_Click()
Range("B12").Value = CheckBox1.Value
If CheckBox1.Value Then
CheckBox2.Value = False
Range("B14").Value = False
End If
End Sub
(and similar but opposite for second one)
Bookmarks