-1

我正在尝试在 Excel 电子表格中汇总数据。我想根据第一列复制最后一个唯一行这是数据示例:

DocOrd#   text    Value

1         text    .1
1         text    .2
1         text    .3
1         text    .4
2         text     2
2         text     4
2         text     6
2         text     8
3         text     1
3         text     2
3         text     3
3         text     4

我想要的是:

DocOrd#   text    Value

1         text    .4
2         text     8 
3         text     4

谢谢你的帮助

4

1 回答 1

0

这可能会有所帮助 - 它遍历您的数据(假设Sheet1从 cell 开始A1)并获取每个条目的最后一个条目DocOrd#并将其放在Sheet2

Sub CopyLastEntry()
    Dim entries As Range, entry As Range, cnt As Long

    Set entries = Range("A2:A" & Range("A1").End(xlDown).Row) //Change as per your s/sheet
    cnt = 1

    For Each entry In entries
        If entry <> entry.Offset(1, 0) Then
            Range(entry, entry.Offset(0, 3)).Copy Destination:=Worksheets(2).Range("A" & cnt)
            cnt = cnt + 1
        End If
    Next entry
End Sub
于 2013-10-08T20:36:26.520 回答