假设你的数据在A列,以下代码可以帮COPY254列*EXCEL本身行列限制的原因,一个工作表只有255列)
Sub MoveData()
Dim Irow As Long, Icol As Integer
Icol = 2 'Paste data from B column
For Irow = 11 To 1000 Step 10
Range("A" & Irow & ":A" & Irow + 9).Cut
'Range(Cells(Irow, 1), Cells(Irow + 9, 1)).Cut
Cells(1, Icol).Select
ActiveSheet.Paste
Icol = Icol + 1
Next Irow
End Sub