DateV4 = wsSource.Range("V4") ' Acquisition de la date.
et
'Compressor B
With Sheets("B")
.Select
DL = Application.Match(CLng(DateV4), .Range("A:A"), 0) - 1 ' Où est la date
If Not IsError(DL) Then ' Si pas de date trouvée, message d'erreur
.Cells(DL + k, "B") = T353(1, 1) ' Transfert tableau
.Cells(DL + k, "C") = T353(1, 4)
.Cells(DL + k, "D") = T353(1, 8)
.Cells(DL + k, "E") = T353(1, 10)
.Cells(DL + k, "F") = T353(1, 12)
.Cells(DL + k, "G") = T353(1, 15)
.Cells(DL + k, "H") = T353(1, 18)
.Cells(DL + k, "I") = T353(1, 21)
Else
MsgBox "La date n'appartient pas au fichier."
End If
End With