Thread: Opening excel
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Gary Keramidas Gary Keramidas is offline
external usenet poster
 
Posts: 2,494
Default Opening excel

you can create an auto open macro
in a code module:

Sub auto_open()
Worksheets("sheet2").Select
End Sub



--


Gary


"Curt" wrote in message
...
does excel all ways want to open on sheet (1) is there a way to change it.
Know I cna copy all data to another sheet. That means I have a lot of
references to change also. This is reason to change opening page.
Thanks