Eliminar registro de Padre Excel

Para Dante amor

Hola amigo Dante Deseo eliminar registro de padre que ya no necesite, pero cumpliendo una condición que si el padre tiene una deuda arrojar msgbox indicando que tiene deuda.

1 Respuesta

Respuesta
1

H o l a:

¿Y de cuál hoja lo quieres eliminar?

¿Y si tiene hijos?

¿Cómo sé si todavía tiene deuda?

Voy analizarlos

Tienes razón amigo Dante padre, hijo y deuda están asociado mejor me quedo con solo modificar Saludos!

Amigo Dante el hijo no está asociado y deseo un botón eliminar para ello eliminar Saludos!

H o l a:

Te anexo el código para borrar un hijo

Private Sub CommandButton3_Click()
'Por.Dante Amor
    If Listahijos.ListIndex = -1 Then
        MsgBox "Selecciona un hijo"
        Exit Sub
    End If
    Set h6 = Sheets("Hijos")
    Set r = h6.Columns("A")
    Set b = r.Find(Listahijos.List(Listahijos.ListIndex, 0), lookat:=xlWhole)
    If Not b Is Nothing Then
        ncell = b.Address
        Do
            If h6.Cells(b.Row, "B") = Listahijos.List(Listahijos.ListIndex, 1) Then
                h6.Rows(b.Row).Delete
                MsgBox "El registro ha sido borrado"
                Exit Do
            End If
            Set b = r.FindNext(b)
        Loop While Not b Is Nothing And b.Address <> ncell
    End If
    ListaEmpresas_Click
End Sub

sal u dos

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas