Sub Mareee()
a = Year(Worksheets("Calendrier").Range("B1"))
m = Month(Worksheets("Calendrier").Range("B1"))
j = ActiveCell.Value
vDate = DateSerial(a, m, j)
With Worksheets("Marees")
For I = 2 To 12
If .Cells(I, 1) = vDate Then
Forme.Label29 = .Cells(I, 3).Value
Forme.Label30 = .Cells(I, 4).Value
Forme.Label31 = .Cells(I, 2).Value
Forme.Label32 = .Cells(I, 6).Value
Forme.Label33 = .Cells(I, 7).Value
Forme.Label34 = .Cells(I, 5).Value
End If
Next I
End With
End Sub