VBA code behind command button

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?
 
D

Don Guillett

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")
 
Top