View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Deleting Blank rows as a result of a formula

try this idea
Sub deleteblankformulas()
For Each c In Range("c10:c15")
If c.HasFormula And c = "" Then c.EntireRow.Delete
Next c
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Curtd" wrote in message
...
I realize there have been numerous discussions on deleting rows with a cell
blank, I can not locate one with what I need that works, I have a column
that
has some blank cells due to a formula result and need to delete these
rows,
any help would be appreciated. thanks