Excel Macro Issue Trying to autorun Macro Upon Opening Worksheet

  • Thread starter Thread starter wyndman
  • Start date Start date
W

wyndman

I'm trying to have Excel run a macro I have written when a spreadshee
is opend. I have a windows script that will open Excel for me, and th
spreadsheet I need, but so far I've had little luck getting the macr
to run. I've coded it into the actual sheet to run when it starts, bu
it can never find the macro. :confused
 
Put the code in the Workbook_Open routine of the Workbook module.

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions
 
Auto run code does not go into the Worksheet module.

Two methods...

1. In a general module

Sub Auto_Open()
'your code here
End Sub

2. In the ThisWorkbook module

Sub Workbook_Open()
'your code here
End Sub

Gord Dibben Excel MVP
 

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