Delete Rows if value is "0"

  • Thread starter Thread starter jjj
  • Start date Start date
J

jjj

Hi,

If the value of cell a1 = anything except 0(zero) then thats fine.
If the value of cell a1 = 0(zero), then how could i code it to delet
that entire row
 
Hi

Try this one for column A

Sub Example3()
Dim Lrow As Long
Dim CalcMode As Long
Dim StartRow As Long
Dim EndRow As Long
With Application
CalcMode = .Calculation
.Calculation = xlCalculationManual
.ScreenUpdating = False
End With

With ActiveSheet
.DisplayPageBreaks = False
StartRow = 1
EndRow = .Cells(.Rows.Count, "A").End(xlUp).Row
For Lrow = EndRow To StartRow Step -1
If IsError(.Cells(Lrow, "A").Value) Then
'Do nothing, This avoid a error if there is a error in the cell

ElseIf .Cells(Lrow, "A").Value = "0" Then .Rows(Lrow).Delete
'This will delete each row with the Value "0" in Column A.

End If
Next
End With
With Application
.ScreenUpdating = True
.Calculation = CalcMode
End With
End Sub


For more examples see
http://www.rondebruin.nl/delete.htm
 
modify to suit

Sub DeleteBlankRows1()
For x = Selection.Cells.Count To 1 Step -1
If Selection.Cells(x) = "" Then Selection.Cells(x).EntireRow.Delete
Next
End Sub
 
Back
Top