Sub Faire_Feuille_Sommaire()
Dim ws As Worksheet, j&
j = 1
With Sheets("MENU")
.[B1] = "NOM FEUILLES"
For Each ws In ThisWorkbook.Sheets
If ws.Name <> "MENU" Then
j = j + 1
ws.Hyperlinks.Add .Cells(j, 2), "", "'" & ws.Name & "'!A1", , ws.Name
End If
Next
End With
End Sub