Respuesta
en
Macros Excel
y en 2 temas más
a
Como detener una macro totalmente en caso de que surja un error y como usar on error goto para mostrar una msgbox
Prueba con esto: On error resume next If Err.Number= 1004 Then Msg= MsgBox("Faltan Datos", vbInformation+vbDefaultButton1, "Datos") Exit Sub End If Range("_DETALLE").Value = Range("DETALLE").Value Range("TYP_COMPRA1").ClearContents Range("INI")....