Opening Excel to a particular worksheet

  • Thread starter Thread starter Aaron
  • Start date Start date
A

Aaron

Hello,
I have created a spreadsheet for a number of users to
access. I would like the spreadsheet to open on a
particular worksheet every time no matter where it is
saved.

The Worksheet that I would like to have as the default
page acts as a coversheet and has hyperlinks to other
input & savings worksheets.

Can someone please tell me how to open my spreadsheet up
at the 1 default worksheet every time.
Is it a macro or is it the way the shortcut is written?

If it is one of the above, how can I accomplish my goal?
 
Hi Aaron!

Try:

In the VBA editor double click on 'ThisWorkbook' and insert the
following code:

Private Sub Workbook_Open()
worksheets("Sheet1").activate
Range("A1").select
End Sub

Change according to where you want to start at.
 
Hi
you have to use a macro (or to be precise an event procedure). Put the
following code in your workbook module (not in a standard module)

sub workbook_open()
me.worksheets("your_sheet").activate
end sub
 

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

Back
Top