Try this:-
Sub MG28Feb00
Dim Rng As Range
Dim Dn As Range
Dim oTxt As String
Dim cols As Variant
Dim n As Integer
With Sheets("BEFORE")
Set Rng = .Range(.Range("R1"), .Range("R" & Rows.Count).End(xlUp))
End With
With CreateObject("scripting.dictionary")
.CompareMode = vbTextCompare
For Each Dn In Rng
oTxt = Join(Application.Index(Dn.Resize(, 10).Value, 1, Array(1, 2, 3, 7, 10)))
If Not .Exists(oTxt) Then
.Add oTxt, Dn
Else
Set .Item(oTxt) = Union(.Item(oTxt), Dn)
End If
Next
Dim k As Variant
Dim R As Range
Dim c As Long
ReDim ray(1 To .Count, 1 To 27)
cols = Array(-17, -16, -15, -14, -13, -10, -5, -4, 0, 1, 2, 7, 9)
For Each k In .keys
c = c + 1
For Each R In .Item(k)
For n = 0 To UBound(cols)
If Not IsEmpty(R.Offset(, cols(n))) Then
If cols(n) = "-4" Then
ray(c, cols(n) + 18) = ray(c, cols(n) + 18) + R.Offset(, cols(n))
Else
If IsEmpty(ray(c, cols(n) + 18)) Then
ray(c, cols(n) + 18) = R.Offset(, cols(n))
End If
End If
End If
Next n
Next R
Next k
End With
Sheets("AFTER").Range("A1").Resize(c, 27).Value = ray
MsgBox "Run"
End Sub
Regards Mick
Bookmarks