Sub xXx()
Selection.Copy
Sheets("Goods out").Select
Sheets("Goods out").Range("D65536").End(xlUp).Offset(1, 0).Select 'Selectionne la ligne vide dans la colonne D
ActiveSheet.Rows(ActiveCell.Row).EntireRow.Select 'Selectionne la ligne dont la derniere cellule est vide en partant du bas
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False 'Permet d'arreter la fonction copy
End Sub