Bonjour,
Dim nextRow As Integer
nestRow = rSh.Range("A" & Rows.Count).End(xlUp).Row + 1
next ou nest ? faut choisir
Sinon est-ce bien utile de faire une page de Déclaration de valeur pour une simple copie d'info ?
Ceci devrait fonctionner aussi bien sans déclaration.
Private Sub Enregistrer_Click()
nextRow=Worksheets("Record").Range("A" & Rows.Count).End(xlUp).Row + 1
Worksheets("Record").Range("A" & nextRow).Value = txtKinModule.Value
Worksheets("Record").Range("B" & nextRow).Value = cboPosModule.Value
Worksheets("Record").Range("C" & nextRow).Value = cdate(txtDateNA.Value)
Worksheets("Record").Range("D" & nextRow).Value = txtEquipeNA.Value
Worksheets("Record").Range("E" & nextRow).Value = txtEquipeRespNA.value
Worksheets("Record").Range("F" & nextRow).Value = txtMatriculeNA.value
End Sub