Auto macro opening excel workbook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to run automaticaly a macro when opening a workbook.
I have found answers, but I don't understand them. Please detail me the step
in excel and visual basic to make this possible.

Thank you very much in advance.
 
Private Sub Workbook_Open()
'your code here
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code



--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Open the VBA Editor. Go to the Insert menu and choose Module (not
Class Module). In that module, place the following code:

Sub Auto_Open()
' the code you want to run
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

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