first page upon opening

  • Thread starter Jean-Paul De Winter
  • Start date
J

Jean-Paul De Winter

Hi,
Is there a way to automatically jump to the first page of the worksheet upon
opening the xls file?
Thanks
JP
 
F

Frank Kabel

Hi
put the following code in your workbook module:
sub workbook_open()
me.worksheets(1).activate
end sub
 
Top