View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default opening on same sheet

Hi
try
Private Sub Workbook_Open()
Worksheets("names").activate
End Sub

--
Regards
Frank Kabel
Frankfurt, Germany


Tony wrote:
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?