I found a way to my problem, I just added an extra column to combine data in multiple cells.
Like =B1&C1&E1 filled this down to lastrow in column G and searched for duplicates in this row.
I know I asked this Question in 2016 but better late than never i guess.
I use this script, but this only checks for one column if the row is duplicate or not.
How do i modify this to check for multiple columns (two is fine).
Sub merge_duplicates()
Dim count, count_1, found_str
count = 2
Do Until Range("A" & count) = ""
found_str = 0
For count_1 = 1 To count - 1
If InStr(1, Range("E" & count), Range("E" & count_1)) > 0 Then
Range("D" & count_1) = Range("D" & count_1) + Range("D" & count)
found_str = 1
End If
Next
If found_str = 1 Then
Rows(count).Delete
Else
count = count + 1
End If
Loop
End Sub
Thanks in advance.