Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a general setting to always reopen on the first worksheet,
regardless of where you were in the file when last saved? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
there's no setting but you can use the workbook open event. ALT+F11 to open VB editor. Double click 'ThisWorkbook' and paste the code belwo in on the right Private Sub Workbook_Open() Sheets(1).Activate End Sub Mike "B. Orr" wrote: Is there a general setting to always reopen on the first worksheet, regardless of where you were in the file when last saved? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
a workbook_open macro would work Private Sub Workbook_Open() Sheets("sheet1").Activate Range("A1").Activate End Sub Regards FSt1 "B. Orr" wrote: Is there a general setting to always reopen on the first worksheet, regardless of where you were in the file when last saved? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Re-open worksheet saved as PDF? | Excel Discussion (Misc queries) | |||
Copy Data from Worksheet1 to Worksheet2 IF Worksheet1 Column D = Y | Excel Worksheet Functions | |||
I have a file saved as .idx How do I open it? | Excel Discussion (Misc queries) | |||
excel 2003 saved file will not open without a blank workbook open | Excel Discussion (Misc queries) | |||
linking worksheet1 to worksheet1 | New Users to Excel |