'-------Déplacement de la ligne terminé vers la feuille action terminé
Dim Derniere_ligne As Long
Derniere_ligne = Sheets("Action terminé").Range("A" & Rows.Count).End(xlUp).row + 1
'Range("A" & Rows.Count).End(xlUp).Offset(1).Select
If TextBox9.Value <> "" Then
If MsgBox("Etes-vous certain de vouloir cloturer cette action ?", vbYesNo, "Demande de confirmation") = vbYes Then
For numlignevide = 2 To Derniere_ligne
'For numlignevide = 2 To Range("A" & Rows.Count).End(xlUp).row + 1
If Cells(numlignevide, 1) = "" Then
Exit For
End If
Next
For i = 1 To 11
Sheets("Action terminé").Cells(numlignevide, i).Value = Me.ListBox1.List(ListBox1.ListIndex, i - 1)
Next
Sheets("BD matériel").Rows(ListBox1.ListIndex + 2).Delete
MsgBox "L'action a été cloturée et déplacée!"
End If
End If
'------