Answers for "Dlete rows with blanks and space " " vba"

VBA
0

Dlete rows with blanks and space " " vba

Dim iCounter As Long
With Application
    .Calculation = xlCalculationManual
    .ScreenUpdating = False
    For iCounter = Selection.Rows.Count To 1 Step -1
        If WorksheetFunction.CountA(Selection.Rows(iCounter)) = 0 Then
            Selection.Rows(iCounter).EntireRow.Delete
        End If
    Next iCounter
    .Calculation = xlCalculationAutomatic
    .ScreenUpdating = True
End With
Posted by: Guest on December-11-2020

Code answers related to "Dlete rows with blanks and space " " vba"

Code answers related to "VBA"

Browse Popular Code Answers by Language