I\'m trying to run a macro that selects blank cells in a table column and deletes the entire row.
The script below does everything except the deleting part, which p
Adapting previous answers:
On Error Resume Next Set Rng = ListObjects(1).DataBodyRange.SpecialCells(xlCellTypeBlanks) On Error GoTo 0 If Not Rng Is Nothing Then Rng.Delete Shift:=xlUp End If