Subプロシージャ例1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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