Bonjour,
Une variante du code de @xorsankukai
Private Sub Workbook_Open()
Dim CelJour
With Feuil1
CelJour = Application.Match(CLng(Date), .Rows(1), 0)
If Not IsError(CelJour) Then Application.Goto .Cells(10, CelJour)
End With
End Sub
Si le fichier ne contient qu'un seul onglet...
S'il contient plusieurs onglets mensuels, il va falloir adapter le code (en connaissant le type de nommage des onglets)
Bonne journée