Option Explicit
Sub MergeDups()
Dim rngX As Range
Dim i As Integer
Dim ws1 As Worksheet
Dim ws2 As Worksheet
Dim ctr1 As Integer
Dim lstrow As Integer
Dim j As Integer
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Set ws1 = Sheets("input")
ws1.Range("A1:Q" & Cells(65536, "A").End(xlUp).Row).Sort Key1:=Range("B1"), Order1:=xlAscending, Key2:=Range("C1"), _
Order2:=xlAscending, Header:=xlGuess, OrderCustom:=1, MatchCase:=False, _
Orientation:=xlTopToBottom, DataOption1:=xlSortNormal, DataOption2:=xlSortNormal
On Error Resume Next
Sheets("output").Delete
Sheets.Add
Set ws2 = ActiveSheet
ws2.Name = "Output"
ws1.Rows("1:1").Copy
ws2.Rows("1:1").PasteSpecial
Application.CutCopyMode = False
ctr1 = 0
ws1.Select
For i = 2 To ws1.Cells(65536, "B").End(xlUp).Row
If Trim(UCase(ws1.Range("B" & i))) = Trim(UCase(ws1.Range("B" & i + 1))) _
And Trim(UCase(ws1.Range("C" & i))) = Trim(UCase(ws1.Range("C" & i + 1))) Then
ws1.Rows(i & ":" & i).Copy
lstrow = ws2.Cells(65536, "B").End(xlUp).Row + 1
ws2.Range(lstrow & ":" & lstrow).PasteSpecial
Application.CutCopyMode = False
For j = 1 To 17
If ws1.Cells(i, j) = "" And ws1.Cells(i, j) <> ws1.Cells(i + 1, j) Then
ws1.Cells(i + 1, j).Copy
ws2.Cells(lstrow, j).PasteSpecial
End If
Next j
i = i + 1
ctr1 = ctr1 + 1
Else
If Trim(UCase(ws1.Range("B" & i - 1))) = Trim(UCase(ws1.Range("B" & i))) _
And Trim(UCase(ws1.Range("C" & i - 1))) = Trim(UCase(ws1.Range("C" & i))) Then
i = i + 1
ws1.Rows(i & ":" & i).Copy
lstrow = ws2.Cells(65536, "B").End(xlUp).Row + 1
ws2.Range(lstrow & ":" & lstrow).PasteSpecial
Application.CutCopyMode = False
Else
ws1.Rows(i & ":" & i).Copy
lstrow = ws2.Cells(65536, "B").End(xlUp).Row + 1
ws2.Range(lstrow & ":" & lstrow).PasteSpecial
Application.CutCopyMode = False
End If
End If
Next i
ws2.Select
ws2.Range("A1").Select
Application.DisplayAlerts = True
Application.ScreenUpdating = True
MsgBox ("Done! Merging of data completed. " & ctr1 & " duplicate records found and merged")
End Sub
|