Código para crear el botón de nuevo registro
QUERÍA saber si me pueden ayudar con el código de botón nuevo en un formulario de excel.
Private Sub cmd_nuevoreg_Click()
Sheets("LISTADO").Activate
ult = Cells(Rows.Count, 1).End(xlUp).Row
ult = ult + 1
If Text_codigo.Value = "" Or Text_nomcoop.Value = "" Or Text_abreviatura.Value = "" Or Text_correo.Value = "" Or Text_dirección.Value = "" Or Text_telefono.Value = "" Or cbx_departesa.Value = "" Or cbx_municipio.Value = "" Or cbx_tipodecoop.Value = "" Then
MsgBox "Ingrese datos": Exit Sub
End If
End Sub
2 Respuestas
Respuesta de Elsa Matilde
1
Respuesta de James Bond
1