Thread
:
Work around to SpecialCells(xlCellTypeBlanks)...
View Single Post
#
5
Posted to microsoft.public.excel.misc
ward376
external usenet poster
Posts: 360
Work around to SpecialCells(xlCellTypeBlanks)...
Sub remove()
Dim c As Range
For Each c In ActiveSheet.Range("d2:d" & Rows.Count)
If c.Text = "" Then c.EntireRow.Delete
Next
End Sub
Cliff Edwards
Reply With Quote
ward376
View Public Profile
Find all posts by ward376