I'm stuck with what is probably a stupid question. "How to find a cell where the formula returns an answer of 0 (zero)
Column A contains x rows of formula adding each row Column B to D
=SUM(B4:D4)
Im trying to delete all rows where is finds this value.
Columns("A:A").Select
Selection.Find(What:="0", After:=ActiveCell, LookIn:=xlValues, LookAt:= _
xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=True).Activate
strDelRow = Activecell.Row
Rows("" & StrDelRow &":" & StrDelRow).Select
Selection.Delete Shift:=xlUp
...but - it can find the zeros as they are in a formula? Anyone to possibly help?
Many thanks,
Ian