Respuesta
en
Microsoft Excel
a
Eliminar las filas que sean iguales a un valor ingresado
Así fue como lo solucioné, gracias a quien hay puesto interés. Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Range("H3")) Is Nothing Then Exit Sub If Range("H4") <> 0 Then Resultado = MsgBox("Esta factura ya ha sido...