• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Hyperlink button

saadferoze

New Member
Dear Members,


I would like to have button on each of my worksheet which takes me to the index page of the model. what kind of coding do i need to do for this.


Regards

Saad
 
This is probably the fastest/easiest way to create hyperlinks:

http://blog.contextures.com/archives/2009/11/04/creating-excel-hyperlinks-is-a-drag/

If you really want a button, the macro would be something like:

[pre]
Code:
Sub GetMeHome()
Worksheets("Index Page").Select
End Sub
[/pre]
 
Hi ,


Wouldn't it be easier to assign a short cut key , so that pressing the key combination does what you want ? You don't need to insert a button on each sheet ; thus if you assign the short cut key F to Luke's macro , then pressing CTRL SHIFT F will take you to the Index page.


Unless by worksheet , you actually mean workbook ?


Narayan
 
Back
Top