Settings - Spreadsheet to always open on Sheet 1?

littlerussell

New Member
Joined
Sep 26, 2006
Messages
3
Can anyone help with a further query please?

I am creating a spreadsheet which will be accessed by various users (but not at the same time).

When a one user saves the spreadsheet and the next user opens it, it automatically reopens on the worksheet and cell reference that the last user left it on.

I would like the spreadsheet to always open at the same point (ie Sheet 1, Cell A1).

Short of training all the users to return to sheet 1 before saving, or creating a macro which saves and closes the file when a button is pushed, is there a way of adjusting the settings - neither of which are foolproof - so that every time the file is opened it opens on a specific cell?

Thanks
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
In the ThisWorkBook module, use the Open event and include this code
Code:
Sheet1.Activate
Range("$A$1").Select

lenze
 
Upvote 0

Forum statistics

Threads
1,215,006
Messages
6,122,666
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top