DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
=VE(C3<>"";kuryehesap!C3<>"";C3=kuryehesap!C3)
Hocam teşekkür ederim de ya ben beceremedim yada bir yanlışlık var hata veriyor.
Sub karsilastir()
Dim r, c
Sheets("hesapkontrol").Select
Range("C3").Select
Do Until ActiveCell.Row = 52
r = ActiveCell.Row
c = ActiveCell.Column
If ActiveCell.Value = Sheets("kuryehesap").Cells(r, c) Then
With Selection.Interior
.Pattern = xlNone
End With
Else
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 65535
End With
End If
ActiveCell.Offset(1, 0).Select
Loop
Sheets("hesapkontrol").Range("C3").Select
End Sub
Sub karsilastir()
Dim r, c, s
Sheets("hesapkontrol").Select
[COLOR="red"]For s = 3 To 17 Step 2
Cells(3, s).Select[/COLOR]
Do Until ActiveCell.Row = [COLOR="Red"]53[/COLOR]
r = ActiveCell.Row
c = ActiveCell.Column
If ActiveCell.Value = Sheets("kuryehesap").Cells(r, c) Then
With Selection.Interior
.Pattern = xlNone
End With
Else
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 65535
End With
End If
ActiveCell.Offset(1, 0).Select
Loop
[COLOR="Red"]Next[/COLOR]
Sheets("hesapkontrol").Range("C3").Select
End Sub