Private Sub Workbook_SheetActivate(ByVal Sh As Object)
Dim i As Long, j As Long
' Utilisation de Sh.Index pour retrouver Mois Actuel
If Sh.Index <> Month(Date) Then Exit Sub
i = Application.Match(CLng(Date), Sh.Range("F1:F33"), 0)
If CDbl(Time()) < [K2] And CDbl(Time()) > [I2] Then
j = 11
ElseIf CDbl(Time()) < [I2] And CDbl(Time()) > [G2] Then
j = 9
Else
j = 7
End If
Sh.Cells(i, j).Select
End Sub