autoload VBA

  • Thread starter Thread starter -_-\
  • Start date Start date
?

-_-\

How to make the VBA autoload when I open the excel file?
thx a lot~~~
 
Put this in a standard module:

Sub Auto_open()
MsgBox "VBA greets you, earthling"
End Sub

HTH. Best wishes Harald
 
done~
thx a lot~
Harald Staff said:
Put this in a standard module:

Sub Auto_open()
MsgBox "VBA greets you, earthling"
End Sub

HTH. Best wishes Harald
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top