Code:
Sub biteme()
Cells(1, 1).EntireColumn.Find("hello", LookIn:=xlWhole, Lookat:=xlWhole).Select
Selection.EntireRow.Delete
End Sub
Well this is not exactly what i desired but it is close.
of course substitute you test value and column.
Cells (1,1) is the first cell first column then I use entire column to look through the all rows.