Command Buttons & ActiveX Controls

  • Thread starter Thread starter aussiegirlone
  • Start date Start date
A

aussiegirlone

What I would like to do is have a command button on click, to go to another
sheet on a specified cell range in the same workbook. It’s just that I do not
know how to create macros or codes to make any command button work. Any help
me would be much appreciated.
 
And to get to a specific range:

Public Sub MyButton_Click()
application.goto Worksheets("Sheet2").range("X99"), scroll:=true 'or false??
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top