Excel 2003.. My problem is that I created a new worksheet for 2007, I
entered some information and then saved it. When I open Excel later it
opens to a worksheet I used for my 2006 entries. I remember last year I had
this problem and someone on this forum told me how to get Excel to open to a
specific worksheet. Now I want Excel to display the 2007 worksheet when I
open it (Excel).
Don
> If you save the file before you close it, it should automatically go
> back to the last sheet you were on.
[quoted text clipped - 7 lines]
>>
>> Don
orbii - 04 Jan 2007 05:32 GMT
put the code into ThisWorkbook in vb, i think that should do the trick. oh
replace "****" w/ what ever you named your sheet.
Private Sub Workbook_Open()
Sheets("Sheet2").Select
End Sub
aloha, orbii
> Excel 2003.. My problem is that I created a new worksheet for 2007, I
> entered some information and then saved it. When I open Excel later it
[quoted text clipped - 15 lines]
>>>
>>> Don
Dave Peterson - 04 Jan 2007 14:42 GMT
Just to add to what Orbii wrote.
You may have existing code under the Workbook_Open procedure in the ThisWorkbook
module--or it could be in a General Module named Auto_Open.
If you find it in one spot, it's (probably) not in the other.
> Excel 2003.. My problem is that I created a new worksheet for 2007, I
> entered some information and then saved it. When I open Excel later it
[quoted text clipped - 15 lines]
> >>
> >> Don

Signature
Dave Peterson
orbii - 04 Jan 2007 17:41 GMT
> Auto_Open.
aaah cool, thanks!
> If you find it in one spot, it's (probably) not in the other.
sorry not quite sure what you mean...
orbii
> Just to add to what Orbii wrote.
>
[quoted text clipped - 25 lines]
>> >>
>> >> Don
Dave Peterson - 04 Jan 2007 18:35 GMT
If your workbook is using Auto_Open, then it's probably not using
Workbook_Open. And vice versa.
> > Auto_Open.
> aaah cool, thanks!
[quoted text clipped - 37 lines]
> >
> > Dave Peterson

Signature
Dave Peterson
orbii - 04 Jan 2007 19:51 GMT
oh oh oh, thank you so much... got to make a note to self on that one.
orbii
> If your workbook is using Auto_Open, then it's probably not using
> Workbook_Open. And vice versa.
[quoted text clipped - 45 lines]
>> >
>> > Dave Peterson
Don Pullem - 05 Jan 2007 16:14 GMT
Sorry for delay in responding was away from my computer yesterday. I
finally found in my notes what I did last year to get the worksheet I wanted
at startup. I put the 2007 worksheet in the "XLSTART" folder under
Microsoft Office. Thanks for all your responses.
Don
> oh oh oh, thank you so much... got to make a note to self on that one.
> orbii
[quoted text clipped - 51 lines]
>>> >
>>> > Dave Peterson