●確認テスト1

【問題文】

2行目をコメントアウトしなさい。

Sub TestComment1()
    A5に"加藤"を入力する
    Cells(5, 1) = "加藤"
End Sub

【解答例】

Sub TestComment1()
    'A5に"加藤"を入力する
    Cells(5, 1) = "加藤"
End Sub