Function Lookup_Example2(ByVal Target As Range)
Application.Volatile
Dim val As Range
Dim col As Variant
Set val = Worksheets("Charge").Range("D7:D222").Find(1015, , xlValues, xlWhole, , , False)
col = Cells(val.Row, val.Column).Interior.Color
'MsgBox (col)
Range(Target.Address).Interior.Color = col
'MsgBox (Target.Address)
End Function