Use the Workbook_Open event to run you macro.
See Chip Pearson's page on Events for a overview:
http://www.cpearson.com/excel/events.htm

Signature
Regards,
Tom Ogilvy
> Ok...I have used the following code to open a new workbook and go to a
> spacific cell..it works fine to get to it..but is it possible to make
[quoted text clipped - 13 lines]
>
> Kris
> Ok...I have used the following code to open a new workbook and go to a
> spacific cell..it works fine to get to it..but is it possible to make
[quoted text clipped - 13 lines]
>
> Kris
While Tom's .Select suggestion in Workbook_Open() will highlight that cell,
it won't actually make A106 the top left cell immediately under your
headings. Use this instead:
Application.GoTo Range("A106"), True

Signature
David
Tom Ogilvy - 14 Mar 2006 23:25 GMT
Tom didn't suggest selecting. Tom suggested using the workbook_open event.

Signature
Regards,
Tom Ogilvy
> > Ok...I have used the following code to open a new workbook and go to a
> > spacific cell..it works fine to get to it..but is it possible to make
[quoted text clipped - 18 lines]
> headings. Use this instead:
> Application.GoTo Range("A106"), True
David - 15 Mar 2006 11:44 GMT
=?Utf-8?B?VG9tIE9naWx2eQ==?= wrote
> Tom didn't suggest selecting. Tom suggested using the workbook_open
> event.
Literally true. Since that was the limit of the suggestion, I assumed he
expected the OP's existing related line be placed there, or existing Sub be
called from there.

Signature
David
krisrice - 21 Mar 2006 21:23 GMT
Thanks for all the help...it works like a charm with the
> Use this instead:
> > Application.GoTo Range("A106"), True
kri