Donde colocar un MSGBox avisando que se coloque la fecha
Estoy trabajando con dicha macro y no encuentro dentro de esta misma colocar un MsgBox avisando que el campo del textFecha debe estar completo.
Private Sub Aceptar_Click()
Fecha = TextFecha.Value
Codigo = TextCodigo.Value
Apellido = TextApellido.Value
Nombre = TextNombre.Value
Set mifila = Hoja1.ListObjects(1).ListRows.Add
With mifila
.Range(1) = CDate(Fecha)
.Range(2) = Codigo
.Range(3) = Apellido
.Range(4) = Nombre
If Me.OpPresente = True Then
.Range(5) = "1"
End If
If Me.OpAusente = True Then
.Range(6) = "1"
End If
End With
TextCodigo = Empty
TextApellido = Empty
TextNombre = Empty
TextFecha.SetFocus
Range("MiRango[[#Headers],[FECHA]]").Select
Selection.End(xlDown).Select
End Sub
2 respuestas
Respuesta de Elsa Matilde
4
Respuesta de david ..
1