navigate b/w worksheets with command button
Hi All,
Can any one help me to write a vba code to navigate between worksheets with a command button.
I tried with hyperlink method but i suppose i was going wrong in writing the code.
Any help or suggestion is highly appreciated.
Thanks in advancePrivate Sub CommandButton1_Click()
ActiveWorksheet.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _
"Sheet3!A1", TextToDisplay:=""
End Sub
|