View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
moon moon is offline
external usenet poster
 
Posts: 20
Default Run code when ANY file opens


In a module, create an Auto_Open macro, like:

Public Sub Auto_Open()
'do the hokie pokie
End Sub

Save your file with the .xla extension, to make it an Add-in.
Pick Extra/Add-ins and check your own file. After that, it'll always run
when Excel is opened.




"Shimmess" schreef in bericht
...
I want to run some VBA code on a PC whenever ANY workbook is opened in
excel.
It can not only be when excel opens, it need to be even if a new file is
oened once excel is already running. Any suggestions?