Problema Con CheckBox en Userform de Excel
Trabajamos creando un formulario, En el Tengo que usar el CheckBox, Para seleccionar si el "usuario"
Es mayor de 18 o menor de 18

Entonces Tengo Todos los Demás Códigos Correctos:
Private Sub CommandButton1_Click()
Selection.EntireRow.Insert
TextBox1 = Empty
TextBox2 = Empty
TextBox1.SetFocus
End Sub
Private Sub CommandButton2_Click()
Unload Me
End Sub
Private Sub CommandButton3_Click()
TextBox1 = Empty
TextBox2 = Empty
TextBox1.SetFocus
End Sub
Private Sub OptionButton1_Click()
If OptionButton1.Value = True Then
Range("C2").Select
ActiveCell.Value = OptionButton1.Caption
End If
If OptionButton1.Value = False Then
MsgBox "Seleccione Una Casilla"
Else
If OptionButton1.Value = False And OptionButton2.Value = False And Len(TextBox1.Text) = 0 Then
MsgBox "Seleccione Una Casilla"
End If
End If
End Sub
Private Sub OptionButton2_Click()
If OptionButton2.Value = True Then
Range("C2").Select
ActiveCell.Value = OptionButton2.Caption
End If
If OptionButton2.Value = False Then
MsgBox "Seleccione Una Casilla"
Else
If OptionButton2.Value = False And OptionButton1.Value = False And Len(TextBox1.Text) = 0 Then
MsgBox "Seleccione Una Casilla"
End If
End If
End Sub
Private Sub TextBox1_Change()
Range("A2").Select
ActiveCell.FormulaR1C1 = TextBox1
End Sub
Private Sub TextBox2_Change()
Range("B2").Select
ActiveCell.FormulaR1C1 = TextBox2
End SubMi Problema Reside es en los Benditos CheckBox [_]+18 y [_]-18
Lo que busco es que al seleccionar uno. Me registre en la base de datos de Excell:

+18 si es mayor de edad (solo se puede elegir esto si el checkbox +18 es seleccionado ya que solo determina si uno es menor o mayor de edad)
Y - 18 Si es Menor de Edad.
Ademas que al seleccionar Uno, Se Deseleccione el Otro.
Y al No seleccionar ninguno, Me envie el MsgBox "Porfavor Seleccione Su Rango de Edad"
Sin Embargo llevo rato y Todo Codigo que intento me envia Error...
Porfavor si alguien puede ayudarme le Agradeceria mucho