how to create buttons which point to other worksheets?

A

AzMan

I have an Excel workbook. I want to have one worksheet with a list of
buttons, so that if i click one it will take me to a specific worksheet.
 
F

flow23

make the buttons in a sheet. then select each button in design mode. and
insert hyperlink
 
T

Toppers

Assign macro to each button (using FORMS toolbar):


Sub Button1_Click()
Worksheets("Sheet1").Activate
End Sub

HTH
 
Top