Te anexo el nuevo código para guardar el registro
Private Sub BtnAceptar_Click()
'Por.Dante Amor
'Validaciones
If xFecha = "" Then
MsgBox "Captura la fecha"
Exit Sub
End If
'
'Guarda datos
Application.ScreenUpdating = False
Set h1 = Sheets("Pagos")
Set h2 = Sheets("formato")
h1.Unprotect "UcG1801"
u = h1.Range("A" & Rows.Count).End(xlUp).row + 1: If u < 7 Then u = 7
h1.Rows(u).Insert
h1.Cells(u, 1).Value = Val(xFecha)
h1.Cells(u, 2).Value = xSocio
h1.Cells(u, 3).Value = xNombre
h1.Cells(u, 4).Value = xBancoS
h1.Cells(u, 5).Value = xClabe
h1.Cells(u, 7).Value = xFactura
h1.Cells(u, 8).Value = Val(xImporte)
h1.Cells(u, 9).Value = xConcepto
h1.Cells(u, 10).Value = xDescripcion
h1.Cells(u, 11).Value = xSolicita
h1.Cells(u, 12).Value = xGasto
h1.Cells(u, 13).Value = xBanco
'Copia y pega formatos
h2.Range("A7:M7").Copy
h1.Range("A" & u & ":M" & u).PasteSpecial xlPasteFormats
'Limpia controles
For Each ctrl In Me.Controls
If TypeName(ctrl) = "TextBox" Or TypeName(ctrl) = "ComboBox" Then
ctrl.Value = ""
End If
Next
h1.Protect "UcG1801"
Application.ScreenUpdating = True
MsgBox "Registro guardado"
End Sub
sal u dos