ok - you ready for this......
Sub FindDupes()
Dim chkCell As Range, lRow As Integer, chkTxt As String, Dim chkDupe As Integer, chkAdd, chkCol As String
Dim Duplicates(50) As Variant
Set chkCell = ActiveCell
chkTxt = chkCell.Text
chkAdd = chkCell.Address
chkCol = Mid(chkAdd, 2, 1) & ":" & Mid(chkAdd, 2, 1)
lRow = ActiveSheet.Range(Mid(chkAdd, 2, 1) & "65536"

.End(xlUp).Row
chkDupe = WorksheetFunction.CountIf(Range(chkCol), chkTxt)
Select Case chkDupe
Case Is <= 1
MsgBox "There are no duplicates for " & chkTxt & " (" & chkAdd & "

"
Exit Sub
Case Is > 1
MsgBox "There are " & chkDupe & " occurences of " & chkTxt
End Select
A = 0
For i = 2 To lRow
If Range(Mid(chkAdd, 2, 1) & i).Text = chkTxt Then
dAdd = Range(Mid(chkAdd, 2, 1) & i).Address
Duplicates(A) = dAdd
A = A + 1
Else
End If
Next i
For x = 0 To A - 1
Application.Goto reference:=Sheets("Sheet1"

.Range(Duplicates(x))
MsgBox "occurance " & x + 1
Next x
End Sub
All you have to do is select the cell that you want to test for dupes and play the macro
Please let me know what you think
HTH
Geoff