Sub satır_sil()
Application.ScreenUpdating = False
On Error Resume Next
sat = 0
For i = 5000 To 1 Step -1
If Cells(i, "m") = "0" Then
Rows(i).Delete
sat = sat + 1
End If
Next i
Application.ScreenUpdating = True
If sat >= 1 Then MsgBox (sat & " Adet veri silindi."), vbInformation
End Sub