How to go to a predetermined sheet on opening

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My workbooks are used by a wide community and are sometimes saved down again,
with the curser sitting in the body of a sheet. i want to tell Excel to
always open on a named sheet whenever the workbook is opened.
 
Put this code in the Workbook object :

Private Sub Workbook_Open()
thisworkbook.Worksheets("Sheet to start from").select
end sub

(obviously you need to change the "sheet to start from" !

Rgds

Rog
 

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