G Guest Apr 29, 2006 #1 I'd like to know how to open the the same sheet of the workbook, regardless of at which sheet it was save last. Thx. cg
I'd like to know how to open the the same sheet of the workbook, regardless of at which sheet it was save last. Thx. cg
J JE McGimpsey Apr 29, 2006 #2 One way: Put this in the ThisWorkbook module of the workbook: Private Sub Workbook_Open() Sheet1.Activate End Sub Where Sheet1 is the code name of the sheet you want to open.
One way: Put this in the ThisWorkbook module of the workbook: Private Sub Workbook_Open() Sheet1.Activate End Sub Where Sheet1 is the code name of the sheet you want to open.
G Guest Apr 29, 2006 #3 Did try on a module but not work! How do I get to the ThisWorkbook module from Tools Macro Visual Basic Editor Thx. cg
Did try on a module but not work! How do I get to the ThisWorkbook module from Tools Macro Visual Basic Editor Thx. cg