Sub imprimer()
Dim C As Range
With Feuil2
For Each C In .Range("a2:a" & .Cells(.Rows.Count, 1).End(xlUp).Row)
Feuil1.[c4] = C: Feuil1.[i4] = C.Offset(, 1)
Feuil1.PrintPreview ' supprimer apres test
'Feuil1.PrintOut ' activer apres test
Next
End With
End Sub