DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Dim i As Long
For i =[COLOR=red] 100[/COLOR] To 2 Step -1
If Cells(i, "a").Interior.ColorIndex = 6 Then
Rows(i).Delete Shift:=xlUp
End If
Next i
Application.ScreenUpdating = True
End Sub
ömer hocam kalanları topluyor toplamasını iştemiyorum diğer bilgileri bozuyur...
tesekkürler.
Rows(i).Delete Shift:=xlUp
Rows(i).ClearContents
Option Explicit
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Dim i As Long, son As Long
son = [A65536].End(3).Row
For i = son To 2 Step -1
If Cells(i, "a").Interior.ColorIndex = 6 Then
[COLOR=red]Rows(i).ClearContents[/COLOR]
End If
Next i
Application.ScreenUpdating = True
End Sub
Range("A" & i).ClearContents