If you're using XL2007, you can set up conditional formatting for each
of the 10 names.
If you're not, you'll need to use an event macro to do it automatically.
For instance, if your copied cells are in J1:Z100:
Private Sub Worksheet_Calculate()
Dim rFormulas As Range
Dim rCell As Range
On Error Resume Next
Set rFormulas = Range("J1:Z100").SpecialCells(xlCellTypeFormulas)
On Error GoTo 0
If Not rFormulas Is Nothing Then
For Each rCell In rFormulas
Select Case rCell.Text
Case "Smith"
rCell.Interior.ColorIndex = 3
Case "Jones"
rCell.Interior.ColorIndex = 5
Case "Johnson"
rCell.Interior.ColorIndex = 7
'Additional cases here...
Case Else
rCell.Interior.ColorIndex = xlColorIndexNone
End Select
Next rCell
End If
End Sub
In article <B05148ED-7DE5-4340...@microsoft.com>,