Checkbox en vb en excel
Quiero saber hasta cuantos checkbox puedo usar en una hoja de calculo ya que tengo miles de registros por lo menos unos 5000 pero solo me deja poner 1200 y si agrego uno más ya no funciona ninguno, lo estoy haciendo de la siguiente manera
Private Sub CheckBox1_Click()
If CheckBox1.Value = True Then
Range("O15").Value = "1"
End If
If CheckBox1.Value = False Then
Range("O15").Value = "0"
End If
End Sub
Private Sub CheckBox2_Click()
If CheckBox2.Value = True Then
Range("P15").Value = "1"
End If
If CheckBox2.Value = False Then
Range("P15").Value = "0"
End If
End Sub
y asi sucsivamente hasta el 1200 pero el 1201 ya no funciona porque es eso????
Private Sub CheckBox1_Click()
If CheckBox1.Value = True Then
Range("O15").Value = "1"
End If
If CheckBox1.Value = False Then
Range("O15").Value = "0"
End If
End Sub
Private Sub CheckBox2_Click()
If CheckBox2.Value = True Then
Range("P15").Value = "1"
End If
If CheckBox2.Value = False Then
Range("P15").Value = "0"
End If
End Sub
y asi sucsivamente hasta el 1200 pero el 1201 ya no funciona porque es eso????
1 Respuesta
Respuesta
1