在 A 列中,我试图为接下来的 61 行复制单元格值。以下是我的尝试,但它似乎不起作用。我想我不确定如何复制单元格值。感谢您的任何建议,因为电子表格有超过 300,000 行,因此我想自动执行此操作。
Sub AnotherAttempt()
'
' AnotherAttempt Macro
'
' Keyboard Shortcut: Ctrl+r
'
iLoop = 2000
For i = 1 To iLoop
j = i - 1
Selection.AutoFill Destination:=Range("A4652 + 62*j:A4652 + 62*i - 1")
Next i
End Sub