Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = [scan].Address Then
Set c = Columns(2).Find(Target.Value, , xlValues, xlWhole)
Application.EnableEvents = False
If Not c Is Nothing Then
c.Interior.ColorIndex = 35
[J4].Offset(, 1) = Target.Value
[J5].Offset(, 1).Offset(1) = c.Offset(, 1).Value
c.Offset(, 2) = "ok"
Else
[J4:J5] = ""
End If
Application.EnableEvents = True
[scan].Select
End If
End Sub