Hi
Data on sheet1 starting in A1, and output going to existing sheet, sheet2.
See how this goes.
Sub ddd()
Dim OutSH As Worksheet, nodupes As New Collection, lastrow As Long
Set OutSH = Sheets("Sheet2")
lastrow = Cells(Rows.Count, 1).End(xlUp).Row
For Each ce In Range("A1:A" & lastrow)
On Error Resume Next
nodupes.Add Item:=ce.Value, key:=CStr(ce.Value)
On Error GoTo 0
Next ce
For i = 1 To nodupes.Count
OutSH.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Value = nodupes(i)
Next i
OutSH.Activate
Range("B2").Formula = "=sumproduct(--(sheet1!$a$1:$a$" & lastrow & "=$a2),(sheet1!B$1:B$" & lastrow & "))"
lastrow = Cells(Rows.Count, 1).End(xlUp).Row
Range("B2").AutoFill Destination:=Range("B2:B" & lastrow)
Range("B2:B" & lastrow).AutoFill Destination:=Range("B2:E" & lastrow)
End Sub
rylo
Bookmarks