> ... You'll have to loop through the columns."
Sub DeleteRowsWithBlanks()
Dim Rng As Range
On Error Resume Next ' In case there are no blanks
Set Rng = [A:V].SpecialCells(xlCellTypeBlanks).EntireRow
Intersect(Rng, Rng).Delete
ActiveSheet.UsedRange 'Reset
End Sub