Hi, Oxco,
the posted code would not have any effect on your sheets as the worksheets mentioned do not exist in the sample.
Sub EF918635_Post_11_re()
Dim wsData As Worksheet
Dim rngFound As Range
Dim rngSearch As Range
Dim lngCounter As Long
Set wsData = Sheets("Sayfa1")
Set rngSearch = wsData.Range("B2:F6")
For lngCounter = 1 To 5
Set rngFound = rngSearch.Find(what:=WorksheetFunction.Large(rngSearch, lngCounter))
If Not rngFound Is Nothing Then
MsgBox "Number " & lngCounter & " found in " & rngFound.Address(0, 0) & vbCrLf & _
"for Row " & wsData.Cells(rngFound.Row, 1) & " and Column " & wsData.Cells(1, rngFound.Column)
' rngFound.ClearContents
End If
Next lngCounter
Set rngFound = Nothing
Set rngSearch = Nothing
Set wsData = Nothing
End Sub
Ciao,
Holger
Bookmarks