Re: Duplication Help!!
Try this:-
Code
Sub oColor()
Dim Rng As Range
Dim Dn As Range
Dim n As Long
Dim oWd As Variant
Dim Ac As Long
Set Rng = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp))
With CreateObject("scripting.dictionary")
.CompareMode = vbTextCompare
For Each Dn In Rng
oWd = Split(Dn, ",")
For n = 0 To UBound(oWd)
If Not .Exists(oWd(n)) Then
.Add oWd(n), Nothing
Else
For Ac = 1 To Len(Dn)
If Dn.Characters(Ac, Len(oWd(n))).Text = oWd(n) Then
With Dn.Characters(Ac, Len(oWd(n))).Font
.ColorIndex = 3
.Bold = True
End With
End If
Next Ac
End If
Next n
Next Dn
End With
End Sub
Display More
Regards Mick