opening on same sheet

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

When I open my excel program if i have been I want it to
always open in the same worksheet i am using
Private Sub Workbook_Open()
Worksheets("names").Show
End Sub
it is telleing me i have the wrong code. What am i
missing?
 
Hi
try
Private Sub Workbook_Open()
Worksheets("names").activate
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