Skip to content

Instantly share code, notes, and snippets.

@milk19873
Created September 20, 2017 12:08
Show Gist options
  • Select an option

  • Save milk19873/38f4e6c520cdaeb71e2668effde366e5 to your computer and use it in GitHub Desktop.

Select an option

Save milk19873/38f4e6c520cdaeb71e2668effde366e5 to your computer and use it in GitHub Desktop.
Subプロシージャ例1
Sub MainSub()
'Callを使ってSubプロシージャを呼び出す
Call TestSub(5, 4)
End Sub
Sub TestSub(a As Integer, b As Integer)
Dim result As Integer
result = a + b
'計算結果を「A1」のセルに代入
Sheets("Sheet1").Cells(1, 1) = result
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment