Salut Chantal,
premier jet à améliorer selon indications.
Private Sub cmdGO_Click()
'
Dim iRow%
'
Application.ScreenUpdating = False
'
With Worksheets("Article")
For x = 9 To Range("A" & Rows.Count).End(xlUp).Row
If Cells(x, 13) > 0 Then
iRow = iRow + 1
.Range("A" & 6 + iRow & ":L" & 6 + iRow).Value = Range("A" & x & ":L" & x).Value
End If
Next
.Activate
End With
'
Application.ScreenUpdating = True
'
End Sub
A+