sub commentaire
[ABX2:ACB10000].ClearContents
jour = Application.Match(CDbl(Date), Range("1:1"), 0)
For i = jour To 744 Step 2
For j = 5 To [A4].End(xlDown).Row
If Cells(j, i) <> "" Then
Range("ABY10000").End(xlUp).Offset(1, 0) = Cells(j, i)
Range("ABX10000").End(xlUp).Offset(1, 0) = CDate(Cells(3, i))
Range("ABZ10000").End(xlUp).Offset(1, 0) = Cells(j, 2)
Range("ACA10000").End(xlUp).Offset(1, 0) = Cells(j, 3)
If Cells(j, i).Comment.Text <> "" Then
Range("ACB10000").End(xlUp).Offset(1, 0) = Cells(j, i).Comment.Text
Else
Range("ACB10000").End(xlUp).Offset(1, 0) = "-"
End If
End If
Next j
Next i
end sub