A qué te refieres con "me depura".
Estamos hablando del botón guardar del form Index?
El código sería este:
Private Sub BTNGUARDAR_Click()
Dim fila As Long
Dim duplicados As Boolean
'Obtener la fila disponible
'fila = Application.WorksheetFunction.CountA(Range("A:A")) + 1
fila = Sheets("Ingresar").Range("A" & Rows.Count).End(xlUp).Row + 1
duplicados = False
If Me.TXTUBICACION = "" Or Me.TXTEQUIPO = "" Or Me.TXTFECHA = "" Or Me.TXTINTERVENCION = "" Or Me.TXTTERMINO = "" Or Me.TXTDESCRIPCION = "" Then
MsgBox "No dejar ningun campo vacio ", vbOK
Else
'Insertar datos capturados
Cells(fila, "A").Value = Index.ComboBox1.Value
Cells(fila, "B").Value = Index.ComboBox2.Value
Cells(fila, 3).Value = Index.TXTUBICACION.Value
Cells(fila, 4).Value = Index.TXTEQUIPO.Value
Cells(fila, 5).Value = CDate(Index.TXTFECHA.Value)
Cells(fila, 6).Value = Index.TXTINTERVENCION.Value
Cells(fila, 7).Value = Index.TXTTERMINO.Value
Cells(fila, 8).Value = Index.TXTDESCRIPCION.Value
'Limpiar TXT
Index.TXTUBICACION.Value = ""
Index.TXTEQUIPO.Value = ""
Index.TXTINTERVENCION.Value = ""
Index.TXTTERMINO.Value = ""
Index.TXTDESCRIPCION.Value = ""
MsgBox "Datos Correctamente Ingresados"
End If
End Sub
En ese form no hay botón para exportar a pdf.
Ya saber que con todo gusto te sigo apoyando, valora esta respuesta para cerrar el tema de guardar los datos de los combos 1 y 2 a la hoja. Y abre una nueva pregunta con tu problema del pdf. Y me explicas con detalle qué estás haciendo, form, fechas, botones, descripción del error, en qué línea se detiene, etc.