تكتب في في الزر امر insert الكود التالي
Private Sub CommandButton1_Click()
Dim Lr As Long, i As Integer
With Sheet3
Lr = .Cells(Rows.Count, "A").End(xlUp).Row + 1
For i = 1 To 10
.Cells(Lr, i) = Me.Controls("TextBox" & i)
.Cells(Lr, 1) = Lr - 2
Next
End With
End Sub