• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Auto start vba

In standard module you can use code like that
Code:
Sub auto_open()
    Call macro1
    Call macro2
    'And so on .. You can use Call then the subroutine name
    'Or you can type the subroutine directly
End Sub

Or in thisworkbook module you can use the code in this way too
Code:
Private Sub Workbook_Open()
    Call macro1
    Call macro2
    'And so on .. You can use Call then the subroutine name
    'Or you can type the subroutine directly

End Sub
 
Back
Top