DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub BARAN()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
son = [[B][COLOR="blue"]I[/COLOR][/B]65536].End(3).Row
For a = son To 2 Step -1
If [COLOR="Red"]Cells(a, 10) <> "" And[/COLOR] Cells(a, 10) = 0 Then
Rows(a & ":" & a).Delete Shift:=xlUp
End If
Next
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub
Sub Sifir_Olan_Satirlari_Sil()
Dim X As Long, Alan As Range, Son As Long, Zaman As Double
Zaman = Timer
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
On Error Resume Next
Son = Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
On Error GoTo 0
If Son > 0 Then
For X = 1 To Son
If Cells(X, "J") <> "" And Cells(X, "J") = 0 Then
If Alan Is Nothing Then
Set Alan = Cells(X, "J")
Else
Set Alan = Union(Alan, Cells(X, "J"))
End If
End If
Next
End If
If Not Alan Is Nothing Then
Alan.EntireRow.Delete
End If
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
MsgBox "İşleminiz tamamlanmıştır." & Chr(10) & _
"İşlem süresi ; " & Format(Timer - Zaman, "0.000") & " Saniye", vbInformation
End Sub
Sub Sifirlari_Sil()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
With ActiveSheet
.Range("$J$1:$J$" & .Rows.Count).AutoFilter Field:=1, Criteria1:="0"
.Range("J2:J" & .Rows.Count).SpecialCells(xlCellTypeVisible).EntireRow.Delete
.ShowAllData
End With
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub
Sub KOD()
For a = 8 To 24
If Cells(a, "G") = "B" Then Range("C" & a & ":M" & a).ClearContents
Next
End Sub