View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Don Guillett
 
Posts: n/a
Default VBA code behind command button

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


--
Don Guillett
SalesAid Software

wrote in message
oups.com...
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?