Sub SeisaT()
Dim x As Integer, y As Integer, irow As Integer
irow = 2
For x = 1 To 2000
For y = 0 To 1
Cells(irow, 1) = x
irow = irow + 1
Next y
Next x
End Sub
or
Code:
Sub SeisaT2()
Dim x As Integer
For x = 2 To 4000 Step 2
Range(Cells(x, 2), Cells(x + 1, 2)) = x / 2
Next x
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.