DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub sil()
Range("c1").Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
ActiveCell.EntireRow.Select
Selection.Delete
Range("c1").Select
End Sub
Sub sil()
Range("c1").Select
Application.ScreenUpdating = False
Dim hucre As Range
For Each hucre In Range("c1:c" & WorksheetFunction.CountA(Range("c1:c5000")))
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
ActiveCell.EntireRow.Select
Selection.Delete Shift:=xlUp
Next
Application.ScreenUpdating = True
End Sub