what is the auto start code for a macro
This is what VB has in it's help file:
"This example opens the workbook Analysis.xls and then runs its Auto_Open macro."
Workbooks.Open "ANALYSIS.XLS"
ActiveWorkbook.RunAutoMacros xlAutoOpen
Does the name of the macro go in the place of :AutoOpen or is AutoOpen the name of a file that has the macro in it that you want to open?