Sub RapportAct()
Dim TabData() As Variant
With Sheets("DATA_QA")
TabData = .Range("Tab_QA").Value
End With
With Sheets("RAPPORT_ACTIVITES")
DateDeb = .Range("C3")
DateFin = .Range("E3")
Chauffeur = .Range("B4")
For i = LBound(TabData, 1) To UBound(TabData, 1)
If TabData(i, 2) >= DateDeb Then
fin = .Range("A" & .Rows.Count).End(xlUp).Row + 1
For j = LBound(TabData, 2) To UBound(TabData, 2)
.Cells(fin, j) = TabData(i, j)
Next j
End If
Next i
End With
End Sub