Updated code for "Magic?"
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim iCompare As Long
Dim iCheck As Long
Dim XL As Variant
Dim xlWS As Variant
Dim Checksum As Long
Dim Compare As Long
Dim Chk As Long
Set xlWS = ActiveSheet
Dim colXLparams As New Collection
iCompare = 3
iCheck = 2
Chk = 0
Do While xlWS.Cells(iCheck, 3).Value <> ""
Do While xlWS.Cells(iCompare, 3).Value <> ""
Checksum = Cells(iCheck, 2)
Compare = Cells(iCompare, 2)
If Checksum = Compare Then
With Cells(iCheck, 3).Interior
.Color = RGB(255, 0, 0)
End With
With Cells(iCompare, 3).Interior
.Color = RGB(255, 0, 0)
End With
iCompare = iCompare + 1
Chk = Chk + 1
Else
iCompare = iCompare + 1
Chk = 0
End If
If Chk = 0 Then
With Cells(iCompare, 3).Interior
.Color = RGB(255, 255, 255)
End With
End If
Loop
iCompare = iCheck + 2
iCheck = iCheck + 1
Loop
End Sub