Maybe:
Sub imcquill09()
Dim i As Long, x As Range, y As Long
y = Range("B" & Rows.Count).End(3).row
For i = 2 To Range("A" & Rows.Count).End(3).row
Set x = Columns(2).Find(Cells(i, "A"), LookIn:=xlValues, lookat:=xlWhole)
If Not x Is Nothing Then
Cells(Rows.Count, "E").End(3)(2) = Cells(i, "A")
x.Interior.ColorIndex = 6
Else
Cells(Rows.Count, "C").End(3)(2) = Cells(i, "A")
End If
Set x = Nothing
Next i
For Each x In Range(Cells(2, 2), Cells(y, 2))
If x.Interior.ColorIndex = xlNone Then
x.Copy Range("D" & Rows.Count).End(3)(2)
Else
x.Interior.ColorIndex = xlNone
End If
Next x
End Sub
Comparing Columns A and B.
Output 1) - Column C
Output 2) - Column D
Output 3) - Column E
Bookmarks