Private Sub Workbook_Open()
Mois = Array("JANVIER", "FÉVRIER", "MARS", "AVRIL", "MAI", "JUIN", "JUILLET", "AOÛT", "SEPTEMBRE", "OCTOBRE", "NOVEMBRE", "DÉCEMBRE")
For L = 5 To 16
With Sheets("JOURNAL GENERAL")
.Cells(L, "E").Select
.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _
Mois(L - 5) & "!A1", TextToDisplay:=Mois(L - 5)
.Cells(L, "T").Select
.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _
Mois(L - 5) & "!A1", TextToDisplay:=Mois(L - 5)
End With
Next L
End Sub