You have not said what type of data is column C string,number or date.anyhow try this macro and see whether you get what you want. no duplicates in col c wither in sheet 1 or sheet 2. no empty row in between.
Sub test()
Dim x, r1 As Range, r2 As Range, c2 As Range
Dim cfind As Range
Worksheets("sheet3").Cells.Clear
With Worksheets("sheet2")
Set r2 = Range(.Range("C2"), .Range("C2").End(xlDown))
For Each c2 In r2
x = c2.Value
With Worksheets("sheet1").Columns("C:C")
Set cfind = .Cells.Find(what:=x, lookat:=xlWhole)
If cfind Is Nothing Then
c2.EntireRow.Copy
Else
GoTo nextc2
End If
With Worksheets("sheet3")
.Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).PasteSpecial
End With
End With
nextc2:
Next c2
End With
End Sub
Bookmarks