0

我是 VBA 新手,我被困在某个地方。我必须将 A 列的最后一行复制到 H 列并将其粘贴到 I 列的最后一行。列的最后一行将始终更改。

例如; 我的数据在 A2:H2 中,I5 是最后一个有数据的单元格。
我的代码应该是复制 A2:H2 并粘贴到 A3:H5。第二次运行宏(在将新数据添加到各个列之后)它应该复制 A6:H6 并将其粘贴到 I 列的最后一行。

我写了两个不能满足我需求的代码。

第一个代码是

  Sub OrderList1()

    Range("a65536").End(xlUp).Resize(1, 8).Copy _
    (Cells(Cells(Rows.Count, 9).End(xlUp).Row, 1))

  End Sub

此代码跳过 A3:H4 并仅粘贴到 A5:H5

第二个代码是

 Sub OrderList2()
   Range("A2:H2").Copy Range(Cells(2, 8), _
   Cells(Cells(Rows.Count, 9).End(xlUp).Row, 1))

 End Sub

它复制 A2:H3 并将其粘贴到 A5:H5 但是当我添加新数据时它不会从 A5:H5 开始粘贴。它从 A2:H2 开始并覆盖旧数据。我可以看到我必须更改的内容,范围应该是第一个代码中的动态范围,但我无法编写代码。

我真的很感激一点帮助。

4

2 回答 2

2

您可能想以此为起点:

Dim columnI As Range
Set columnI = Range("I:I")

Dim columnA As Range
Set columnA = Range("A:A")

' find first row for which cell in column A is empty
Dim c As Range
Dim i As Long
i = 1
For Each c In columnA.Cells
    If c.Value2 = "" Then Exit For
    i = i + 1
Next c

' ok, we've found it, now we can refer to range from columns A to H of the previous row
' to a variable (in the previous row, column A has not been empty, so it's the row we want
' to copy)
Dim lastNonEmptyRow As Range
Set lastNonEmptyRow = Range(Cells(i - 1, 1), Cells(i - 1, 8))

' and now copy this range to all further lines, as long as columnI is not empty
Do While columnI(i) <> ""
   lastNonEmptyRow.Copy Range(Cells(i, 1), Cells(i, 8))
   i = i + 1
Loop
于 2012-08-27T09:10:33.737 回答
1

试试这个,以获得未来的功能,或者至少它对我有用......询问你是否需要帮助理解它:)

Option Explicit

Sub lastrow()
    Dim wsS1 As Worksheet 'Sheet1
    Dim lastrow As Long
    Dim lastrow2 As Long

    Set wsS1 = Sheets("Sheet1")

    With wsS1

'Last row in A
        lastrow = Range("A" & Rows.Count).End(xlUp).Row

'Last Row in I
        lastrow2 = Range("I" & Rows.Count).End(xlUp).Row

'Cut in A:H and paste into last row on I
        wsS1.Range("A2:H" & lastrow).Cut wsS1.Range("I" & lastrow2)
    End With

End Sub
于 2012-08-27T14:26:02.717 回答