Because on the first sheet you're searching ranges A21:A130, which includes some empty cells, but on the Summary sheet, your code only searched A28:A127, which doesn't include empty cells.Originally Posted by c7015
No.Originally Posted by c7015
You need to change the likes of[vba]If findit Is Nothing Then
End
Else
findit.Select
ActiveCell.Offset(1, 5).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.ClearContents
End If[/vba]to:[vba]If not findit Is Nothing Then Range(findit.Offset(1, 5), findit.Offset(1, 5).End(xlDown)).ClearContents[/vba]Yes, one line.