VBA基本 Lesson4

問題と実行結果 Lesson4

VBA Basic Lesson4

問題1

Sub Lesson4_1()

    Dim i As Long

    For i = 2 To 13

        Cells(5, i) = Cells(3, i) / Cells(4, i)

    Next i

End Sub

※使用している内容は、「Office TANAKA」VBA Basic セミナー受講資料から許可を得て引用しております。
田中先生ありがとうございます。