I have found used bits of code i dont really understand on this one. I would like to make it so VBA will search an entire column for a value (the value is stored in cell "A29" say. If it finds it, then it will delete the entire row. This is what im trying to use (but it will only delete the top row)
Columns("B:B").Select
Selection.Find(What:=Range("a29"), After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False).Activate
ActiveCell.EntireRow.Delete
Thanks
Columns("B:B").Select
Selection.Find(What:=Range("a29"), After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False).Activate
ActiveCell.EntireRow.Delete
Thanks