You need to trap the error that is throw when there are no matches for the FIND funcion.
Try something like this:
-----------------------------------------------------------------------------------------------
Sub Delnowin()
Dim uRange As Range
Dim FindTitle As Range
Dim tRow As Integer
Dim tCol As Integer
Set uRange = ActiveSheet.UsedRange
If WorksheetFunction.CountIf(uRange, "NO WINNER") > 0 Then
Set FindTitle = uRange.Find("NO WINNER")
tRow = FindTitle.Row MsgBox tRow
Rows(tRow & ":" & tRow).Select
Selection.ClearContents
Else
MsgBox "Do something here...No match"
End If
Does that help?
Bookmarks