M Mat 66 Apr 21, 2004 #1 Does anyone know how you can force a workbook to always open on certain sheet? i.e. a contents style sheet. Cheers All
Does anyone know how you can force a workbook to always open on certain sheet? i.e. a contents style sheet. Cheers All
F Frank Kabel Apr 21, 2004 #2 Hi put the following code in your workbook module (not in a standard module): sub workbook_open() me.worksheets("content_sheet").activate end sub
Hi put the following code in your workbook module (not in a standard module): sub workbook_open() me.worksheets("content_sheet").activate end sub
T Toby Erkson Apr 21, 2004 #3 Save the workbook with that particular sheet visible. Toby Erkson Oregon, USA