Deleting Blank rows as a result of a formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 
Just filter the column for blanks (Data>Filter>Autofilter), and select a
custom value of blanks and delete the visible rows.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top