G Guest Sep 25, 2006 #1 Can anyone show me how to have a multiple page workbook always open to the same worksheet. (Splash Page) Thanks Kevin
Can anyone show me how to have a multiple page workbook always open to the same worksheet. (Splash Page) Thanks Kevin
D Dave Peterson Sep 25, 2006 #2 Option Explicit Sub auto_Open() worksheets("splashSheet").select end sub Change the worksheet name to what you want. If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm
Option Explicit Sub auto_Open() worksheets("splashSheet").select end sub Change the worksheet name to what you want. If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm
G Guest Sep 26, 2006 #3 Thanks very much Dave ...Works Great!! Dave Peterson said: Option Explicit Sub auto_Open() worksheets("splashSheet").select end sub Change the worksheet name to what you want. If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm Click to expand...
Thanks very much Dave ...Works Great!! Dave Peterson said: Option Explicit Sub auto_Open() worksheets("splashSheet").select end sub Change the worksheet name to what you want. If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm Click to expand...