Sub Couper()
Dim i%, j%
For i = 25 To 1 Step -1
If Cells(i, 9) = "terminé" Then
For j = 26 To 36
If Application.CountA(Rows(j)) = 0 Then
Rows(i).Cut Cells(j, 1)
Rows(26).Insert 'décale la 2ème plage vers le bas
Rows(i).Delete 'supprime la ligne coupée
Exit For
End If
Next j
End If
Next i
End Sub