Starting Excel

G

Gerrym

How can make sure that a workbook with multiple sheets
always starts on a specific sheet.
 
F

Frank Kabel

Hi
put the following type of code into your workbook module ('Thisworkbook'):

sub workbook_open()
me.worksheets("sheet1").activate
end sub
 
Top