In VBA, select ThisWorkbook in your VBAProject window and enter the following:
Sub Workbook_Open()
Run ("Your Macro #1 Here")
Run ("Your Macro #2 Here")
Run......for as many macros as you need to run on open
End Sub
No. There are different ways, but they're not better.Ok this works but is there a better way to have the first book run than to change the first Sub to Auto_Run?