Sub Main() Call Macro1 Call Macro2("Hello World") End Sub Sub Macro1() MsgBox "Macro1 reporting for duty" End Sub Sub Macro2(strTxt As String) MsgBox strTxt End Sub