VBA code behind command button

  • Thread starter Thread starter k.roberts
  • Start date Start date
K

k.roberts

I need to place code behind a command button on a worksheet, that will
take the user to another worksheet within the same workbook.

Can someone help?
 
I suggest using a button from the FORMS menu instead. Assign to a sub
sub gotosheet2
sheets("sheet2").select
end sub
or a range instead
application.goto sheets("sheet2").range("g4")
 

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