Pasar la selección del checkbox a excel
Tengo una consulta y quisiera que cuando pueda me ayude, bueno el asusto es que en el archivo que le adjunto que tiene un formulario, tengo 3 checkbox quisiera saber como hacer por ejemplo si selecciono el checkbox1 que tiene como caption “Operativo” este se marque en la Hoja4 de Excel en la celda “M” que este activa con un “visto” o una “x” y no se como configurar los checkbox
Gracias de antemano
Private Sub cmdguardar_Click() Dim Unidad As String Dim Modelo As String Dim Serie As String Dim Manufactura As String Dim Observacion As String Dim Fecha As String Dim Responsable As String Dim ultimafila As Double Unidad = TextBox3.Value Modelo = TextBox4.Value Serie = TextBox5.Value Manufactura = TextBox6.Value Observacion = TextBox7.Value Fecha = TextBox8.Value Responsable = TextBox9.Value ultimafila = ActiveSheet.UsedRange.Row - 1 + ActiveSheet.UsedRange.Rows.Count Cells(ultimafila + 1, 2) = Unidad Cells(ultimafila + 1, 3) = Modelo Cells(ultimafila + 1, 4) = Serie Cells(ultimafila + 1, 5) = Manufactura Cells(ultimafila + 1, 6) = Observacion Cells(ultimafila + 1, 12) = Fecha Cells(ultimafila + 1, 16) = Responsable@