|
Sub Unique()<br/> Dim i&, j&<br/> For i = 1 To 60000 Step 200<br/> For j = i To i + 199<br/> If Application.CountIf(Range(Cells(i, 1), Cells(i + 199, 1)), Cells(j, 1)) = 1 Then<br/> Cells(j, 1).Interior.ColorIndex = 40<br/> End If<br/> Next<br/> Cells(j, 1).Select<br/> Next<br/>End Sub |
|