Sub Macro1()
Dim os As Worksheet 'déclare la variable os (Onglet Source)
Dim oc As Worksheet 'déclare la variable oc (Onglet Cible)
Dim pl As Byte 'déclare la variable pl (Première Ligne)
Dim dl As Integer 'déclare la variable dl (Dernière Ligne)
Dim dest As Range 'déclare la variable dest (cellule de DESTination)
Set os = Sheets("SAISIE") 'définit l'onglet source
Set oc = Sheets("PIQUETAGE") 'définit l'onglet cible
pl = 10 'définit la première ligne
dl = os.Range("AD10").CurrentRegion.Cells.SpecialCells(xlCellTypeLastCell).Row 'définit la dernière ligne
'définit la cellule de destination
Set dest = IIf(oc.Range("A1") = "", oc.Range("A1"), oc.Cells(Application.Rows.Count, 1).End(xlUp).Offset(1, 0))
os.Rows(pl & ":" & dl).Copy dest 'copie et colle les lignes
End Sub