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