VBA復習

背景
投稿者投稿者a5ba7ab4c3ciいいね1お気に入り登録1
プレイ回数1236難易度(4.7) 30秒 長文
順位 名前 スコア 称号 打鍵/秒 正誤率 時間(秒) 打鍵数 ミス 問題 日付
1 あいかわようた 4366 C+ 4.4 99.2% 30.0 132 1 4 2026/01/12

関連タイピング

問題文

ふりがな非表示 ふりがな表示
(msgbox (”hello world”)) MsgBox ("hello world") (worksheets(”sheet1”).range(”a1”)) Worksheets("Sheet1").Range("A1") (range(”a2”).value = ”hello2”) Range("A2").Value = "hello2" (cells(3, 1).value = ”hello3”) Cells(3, 1).Value = "hello3" (cells(3, 1).offset(1, 0) = ”hello4”) Cells(3, 1).Offset(1, 0) = "hello4" (range(”a1”, ”b3”).value = ”hello”) Range("A1", "B3").Value = "hello" (range(”a5:c7”).value = ”hello2”) Range("A5:C7").Value = "hello2" (range(”4:4”).value = ”row 4”) Range("4:4").Value = "row 4" (range(”c:c”).value = ”column c”) Range("C:C").Value = "Column C" (cells.clear) Cells.Clear