Sub Ajouter()
Dim F, Ligne%
Application.ScreenUpdating = False
Set F = Sheets("Nouveau")
If Application.CountA(F.[D6:D18]) <> 7 Then
MsgBox ("Il manque des informations.")
Exit Sub
End If
With Sheets("Liste des films")
Ligne = 1 + .Range("A65500").End(xlUp).Row
For L = 1 To 8
.Cells(Ligne + 0, L) = F.Cells(2 * L + 2, 4).Value
Next L
End With
F.[D6] = "": F.[D8] = "": F.[D10:D20].ClearContents
End Sub