Language Basics VisualBasic Script

Sub loopCounter()
    Dim I As Integer
    I = 1
    Do While Cells(I, "A").Value <> ""
           Cells(I, "B").Value = Cells(I, "A").Value
           I = I + 1
    Loop
End Sub