VBAでのHello Worldとコメントの書き方。
helloWorld.xlsm
Sub helloWorld()
'コメントはシングルコーテーション で記述
MsgBox ("Hello World")
End Sub
Sub helloWorld2()
'アンダーバーを使うと複数行に渡る文を書ける
MsgBox _
("Hello World 2")
End Sub
Go to list of users who liked
More than 3 years have passed since last update.
VBAでのHello Worldとコメントの書き方。
Sub helloWorld()
'コメントはシングルコーテーション で記述
MsgBox ("Hello World")
End Sub
Sub helloWorld2()
'アンダーバーを使うと複数行に渡る文を書ける
MsgBox _
("Hello World 2")
End Sub
Register as a new user and use Qiita more conveniently
Go to list of users who liked