Excel 2000 - Automatic start up of Macro

A

Abay

I am pretty much a newbie at Excel (don't use it as much as I would lke to
be able to). Is there a way to start up a macro when a particular
spreadsheet is opened ... I don't want this macro to start on all opened
spread sheets. I know I do I can do that, but can't find out anywhere so
far that tells me I can start up a macro when I open a particular
spreadsheet.

Any help with this would be much appreciated.

Abay
 
D

Dave Peterson

You can put your code behind the ThisWorkbook module and name it
workbook_open().

Or you can put your code behind a general module and call it Auto_Open().
 
Top