View Single Post
 
Old 04-02-2014, 03:11 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

OK, try:
Code:
Sub Demo()
Dim iRow As Long
With ActiveSheet.UsedRange
  For iRow = .Cells.SpecialCells(xlCellTypeLastCell).Row To 1 Step -1
    If .Range("A" & iRow).Value = "(blank)" Then
      .Rows(iRow).EntireRow.Delete
    End If
  Next iRow
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote