Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() I use Microsoft Office Excel 2003. I have a spreadsheet with many tabs. It's a shared spreadsheet with many people making updates. Regardless of who last saved it, and what sheet they updated, I would like the spreadsheet to open on Sheet 1. Is this possible? Right now, the spreadsheet opens on the last sheet updated. Thank You! Maria -- Maria ------------------------------------------------------------------------ Maria's Profile: http://www.excelforum.com/member.php...o&userid=10979 View this thread: http://www.excelforum.com/showthread...hreadid=528377 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() (Macro Security for your installation of Excel must be set to medium or low for the following to work:) The following macro will cause Sheet 1 to be displayed every time you reopen the workbook: Private Sub Workbook_Open() Sheets("Sheet1").Activate End Sub The code for this macro must be saved as follows: Select Tools Macros Visual Basic Editor On the left of the Visual Basic Editor Screen you will see a Project Window with a listing of objects and modules. The last item on the list of Objects should be "ThisWorkbook" Double-click on "ThisWorkbook" A window will open titled xxxx.xls - ThisWorkbook (Code) From the top left dropdown menu select Workbook From the right top dropdown menu select Open The subroutine title: "Private Sub Workbook_Open()" will appear, along with End Sub. Add the line Sheets("Sheet1").Activate X - out of VB editor, save your workbook and close it with any sheet selected. When you re-open the file, it should flip to Sheet1. -- CaptainQuattro ------------------------------------------------------------------------ CaptainQuattro's Profile: http://www.excelforum.com/member.php...o&userid=32763 View this thread: http://www.excelforum.com/showthread...hreadid=528377 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
open new microsoft excel sheet and found my last same file all ti. | Excel Worksheet Functions | |||
Combining data from cells from several excel sheets to a new sheet | Excel Discussion (Misc queries) | |||
CSV formatted files open odly in Excel 2000 | Excel Discussion (Misc queries) | |||
Click on Excel Doc Starts Excel but Excel does not Open the Doc. | Excel Discussion (Misc queries) | |||
How do I find a file/spreadsheet that Excel says is Already open but I can't find it? | Excel Discussion (Misc queries) |