Hello,
Can the font and size of the worksheet names from this code be:
bookman old style and size 16 bold
Thank you
Can the font and size of the worksheet names from this code be:
bookman old style and size 16 bold
Thank you
Code:
Sub ListSheets()
Dim ws As Worksheet
Dim x As Integer
x = 3
Sheets("Menu").Range("A3:A20").Clear
For Each ws In Worksheets
Sheets("Menu").Cells(x, 1).Select
ActiveSheet.Hyperlinks.Add _
Anchor:=Selection, Address:="", SubAddress:= _
ws.Name & "!A1", TextToDisplay:=ws.Name
x = x + 1
Next ws
End Sub