I am trying to figure out how I get this is jump down a line. For example i want it start at C3 and go to C15 and import them into columns. Then jump down for example to jump down a row and import the next 15 lines below the first 15.


Sub RowtoColumn()
For i = 3 To 1500
Cells(4, i) = Cells(i, 3)
Next i

End Sub