how can I open an excel file everytime on certain sheet?

I

Inas

I'm trying to create a new Work Book and it will be distributed for other
users; so, I want them to open the file on a certain sheet (Table of Contents
with a Hyperlink) even if they saved it on another...

Appreciate your kind Advice;

Thanks / Inas Moneim
 
D

Dave Peterson

Excel will open the workbook with the worksheet that was visible the last time
you saved it.

If that's not sufficient, you could use a macro:

Option Explicit
sub Auto_Open()
application.goto worksheets("sheet9999").range("a1"), scroll:=true
end sub

Change the name of the sheet to what you want.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
 

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

Top