地道に学ぶExcelVBA
【問題文】
2行目の[A6に・・・]以降をコメントアウトしなさい。
Sub TestComment2() Cells(6, 1) = "加藤" A6に"加藤"を入力する End Sub
【解答例】
Sub TestComment2() Cells(6, 1) = "加藤" 'A6に"加藤"を入力する End Sub
前のページに戻る