Workbook_Open Macro

T

tanner.robin

I am reading a book on Excel 2003 VBA programming. It gives a short
synopsis on how to set up the code for the workbook_open macro but
doesn't really go into how to do it. Can anyone help me with this? I
am using Excel 2007. I plan on writing the code on a Vista OS and
implementing it in an XP environment.

Thanks.
R. Tanner
 
B

Bob Phillips

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

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
N

Norman Jones

Hi Robin,

Bob has shown you an empty
Workbook_Open template, ready to
receive your code; he has also told you
where to place the procedure and has
given you explicit instructions on how to
locate the ThisWorkbook module.

See the following link to the NG archives
for many thousands of examples of code
for Workbook_Open event procedures:

Workbook_Open()
http://tinyurl.com/654dtv

For an authorative overview of event
procedures, do not fail to visit Chip Pearson's
events page at:

Events And Event Procedures In VBA
http://www.cpearson.com/excel/Events.aspx
 

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

Top