地道に学ぶExcelVBA
【問題文】
2行目のコメントアウトを解除しなさい。
Sub TestComment3() 'Cells(1, 1) = "加藤" End Sub
【解答例】
Sub TestComment3() Cells(1, 1) = "加藤" End Sub
前のページに戻る