If you want to find duplicates using worksheet formulas then use a countif function and autofilter the results.
If you want to find duplicates using code then use this code
Sub FindDuplicates()
Dim RC As Integer
Dim i As Integer, j As Integer
'count the rows in the list
RC = Range("A1").CurrentRegion.Rows.Count
'loop through all the tags to find duplicates
For i = 2 To RC
For j = 2 To RC
'uncomment the next line to just show the cell references
'If Cells(i, 1) = Cells(j, 2) Then Cells(j, 3) = Cells(i, 1).Address(False, False)
'This line shows the cell refernces and creates a hyperlink to it
If Cells(i, 1) = Cells(j, 2) Then
ActiveSheet.Hyperlinks.Add Anchor:=Cells(j, 3), Address:="", SubAddress:= _
Cells(i, 1).Address(False, False), TextToDisplay:=Cells(i, 1).Address(False, False)
End If
Next j
Next i
End Sub
working example for both methods:
Bookmarks