Callステートメント(複数プロシージャを稼働させる)
※)プロシージャ名(Integrate1~3)
Excel-VBA
-----------------------------↓
Sub 下記3つのプロシージャを稼働()
Call Integrate1
Call Integrate2
Call Integrate3
End Sub
-----------------------------↓
Sub Integrate1()
End Sub
-----------------------------↓
Sub Integrate2()
End Sub
-----------------------------↓
Sub Integrate3()
End Sub
-----------------------------↓