I have data with duplicates (column "c") and I want to delete the row with numbers in column "D". but only for duplicates with odd dates, as seen in the picture 
this is im code using but i don't know how to delete data line in "D" and , this is duplicate
Sub del_doops() Dim RowNdx As Long Dim RowNdx2 As Long For RowNdx = Range("A1:f1").End(xlDown).Row To 2 Step -1 For RowNdx2 = RowNdx - 1 To 1 Step -1 'Begin at one above RowNdx If Cells(RowNdx, "b").Value = Cells(RowNdx2, "b").Value And _ Cells(RowNdx, "C").Value = Cells(RowNdx2, "C").Value And _ Cells(RowNdx, "E").Value = Cells(RowNdx2, "E").Value And _ Cells(RowNdx, "F").Value <> Cells(RowNdx2, "F").Value Then Rows(RowNdx2).Delete 'this is where i need help End If Next RowNdx2 Next RowNdx End Sub
aj_bk source share