DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Public Sub Tek()
Application.ScreenUpdating = False
For i = [A65536].End(3).Row To 3 Step -1
If Cells(i, "A") = Cells(i - 1, "A") Then
Cells(i - 1, "C") = Cells(i - 1, "C") + Cells(i, "C")
Rows(i).Delete
End If
Next i
MsgBox "İşlem Bitmiştir........"
End Sub
Sub Tek()
Application.ScreenUpdating = False
SonSatır = [A65536].End(3).Row
[B][COLOR=red]Range("A2:C" & SonSatır).Sort Key1:=[A2]
[/COLOR][/B]For i = SonSatır To 3 Step -1
If Cells(i, "A") = Cells(i - 1, "A") Then
Cells(i - 1, "C") = Cells(i - 1, "C") + Cells(i, "C")
Rows(i).Delete
End If
Next i
MsgBox "İşlem Bitmiştir........"
End Sub
Cells(i - 1, "C") = Cells(i - 1, "C") + Cells(i, "C")
Cells(i - 1, "D") = Cells(i - 1, "D") + Cells(i, "D")
Sub Tek()
Application.ScreenUpdating = False
SonSatır = [A65536].End(3).Row
Range("A2:[B][COLOR=red]D[/COLOR][/B]" & SonSatır).Sort Key1:=[A2]
For i = SonSatır To 3 Step -1
If Cells(i, "A") = Cells(i - 1, "A") Then
Cells(i - 1, "C") = Cells(i - 1, "C") + Cells(i, "C")
[B][COLOR=red]Cells(i - 1, "D") = Cells(i - 1, "D") + Cells(i, "D")[/COLOR][/B]
Rows(i).Delete
End If
Next i
MsgBox "İşlem Bitmiştir........"
End Sub